Wrapped all the test results with quotation (#38706)
This commit is contained in:
parent
1f2b66a432
commit
c0e2b65864
@ -21,19 +21,19 @@ Convert the characters <code>&</code>, <code><</code>, <code>></code>, <code>"</
|
||||
|
||||
```yml
|
||||
tests:
|
||||
- text: <code>convertHTML("Dolce & Gabbana")</code> should return <code>Dolce &amp; Gabbana</code>.
|
||||
- text: <code>convertHTML("Dolce & Gabbana")</code> should return <code>"Dolce &amp; Gabbana"</code>.
|
||||
testString: assert.match(convertHTML("Dolce & Gabbana"), /Dolce & Gabbana/);
|
||||
- text: <code>convertHTML("Hamburgers < Pizza < Tacos")</code> should return <code>Hamburgers &lt; Pizza &lt; Tacos</code>.
|
||||
- text: <code>convertHTML("Hamburgers < Pizza < Tacos")</code> should return <code>"Hamburgers &lt; Pizza &lt; Tacos"</code>.
|
||||
testString: assert.match(convertHTML("Hamburgers < Pizza < Tacos"), /Hamburgers < Pizza < Tacos/);
|
||||
- text: <code>convertHTML("Sixty > twelve")</code> should return <code>Sixty &gt; twelve</code>.
|
||||
- text: <code>convertHTML("Sixty > twelve")</code> should return <code>"Sixty &gt; twelve"</code>.
|
||||
testString: assert.match(convertHTML("Sixty > twelve"), /Sixty > twelve/);
|
||||
- text: <code>convertHTML('Stuff in "quotation marks"')</code> should return <code>Stuff in &quot;quotation marks&quot;</code>.
|
||||
- text: <code>convertHTML('Stuff in "quotation marks"')</code> should return <code>"Stuff in &quot;quotation marks&quot;"</code>.
|
||||
testString: assert.match(convertHTML('Stuff in "quotation marks"'), /Stuff in "quotation marks"/);
|
||||
- text: <code>convertHTML("Schindler's List")</code> should return <code>Schindler&apos;s List</code>.
|
||||
- text: <code>convertHTML("Schindler's List")</code> should return <code>"Schindler&apos;s List"</code>.
|
||||
testString: assert.match(convertHTML("Schindler's List"), /Schindler's List/);
|
||||
- text: <code>convertHTML("<>")</code> should return <code>&lt;&gt;</code>.
|
||||
- text: <code>convertHTML("<>")</code> should return <code>"&lt;&gt;"</code>.
|
||||
testString: assert.match(convertHTML('<>'), /<>/);
|
||||
- text: <code>convertHTML("abc")</code> should return <code>abc</code>.
|
||||
- text: <code>convertHTML("abc")</code> should return <code>"abc"</code>.
|
||||
testString: assert.strictEqual(convertHTML('abc'), 'abc');
|
||||
|
||||
```
|
||||
|
Loading…
x
Reference in New Issue
Block a user