Wrapped all the test results with quotation (#38706)

This commit is contained in:
Twaha Rahman 2020-05-02 20:25:55 +06:00 committed by GitHub
parent 1f2b66a432
commit c0e2b65864
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;amp; Gabbana</code>.
- text: <code>convertHTML("Dolce & Gabbana")</code> should return <code>"Dolce &amp;amp; Gabbana"</code>.
testString: assert.match(convertHTML("Dolce & Gabbana"), /Dolce &amp; Gabbana/);
- text: <code>convertHTML("Hamburgers < Pizza < Tacos")</code> should return <code>Hamburgers &amp;lt; Pizza &amp;lt; Tacos</code>.
- text: <code>convertHTML("Hamburgers < Pizza < Tacos")</code> should return <code>"Hamburgers &amp;lt; Pizza &amp;lt; Tacos"</code>.
testString: assert.match(convertHTML("Hamburgers < Pizza < Tacos"), /Hamburgers &lt; Pizza &lt; Tacos/);
- text: <code>convertHTML("Sixty > twelve")</code> should return <code>Sixty &amp;gt; twelve</code>.
- text: <code>convertHTML("Sixty > twelve")</code> should return <code>"Sixty &amp;gt; twelve"</code>.
testString: assert.match(convertHTML("Sixty > twelve"), /Sixty &gt; twelve/);
- text: <code>convertHTML(&apos;Stuff in "quotation marks"&apos;)</code> should return <code>Stuff in &amp;quot;quotation marks&amp;quot;</code>.
- text: <code>convertHTML(&apos;Stuff in "quotation marks"&apos;)</code> should return <code>"Stuff in &amp;quot;quotation marks&amp;quot;"</code>.
testString: assert.match(convertHTML('Stuff in "quotation marks"'), /Stuff in &quot;quotation marks&quot;/);
- text: <code>convertHTML("Schindler&apos;s List")</code> should return <code>Schindler&amp;apos;s List</code>.
- text: <code>convertHTML("Schindler&apos;s List")</code> should return <code>"Schindler&amp;apos;s List"</code>.
testString: assert.match(convertHTML("Schindler's List"), /Schindler&apos;s List/);
- text: <code>convertHTML("<>")</code> should return <code>&amp;lt;&amp;gt;</code>.
- text: <code>convertHTML("<>")</code> should return <code>"&amp;lt;&amp;gt;"</code>.
testString: assert.match(convertHTML('<>'), /&lt;&gt;/);
- 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');
```