Skip to content
This repository has been archived by the owner on Jul 6, 2021. It is now read-only.

Commit

Permalink
All: fix some unnecessary redirects
Browse files Browse the repository at this point in the history
Closes gh-105
  • Loading branch information
Acho Arnold authored and arthurvr committed Apr 6, 2015
1 parent d61184d commit c053a9a
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion entries/QUnit.test.xml
Expand Up @@ -19,7 +19,7 @@
<longdesc>
<p>Add a test to run using <code>QUnit.test()</code>.</p>
<p>The <a href="/QUnit.assert/"><code>assert</code></a> argument to the callback contains all of QUnit's <a href="/category/assert/">assertion methods</a>. Use this argument to call your test assertions.</p>
<p>This method used to have an optional second argument called <code>expected</code>. This argument is deprecated and its usage will start throwing errors in 2.0.0. If you're using it, use <a href="/expect"><code>assert.expect()</code></a> instead.</p>
<p>This method used to have an optional second argument called <code>expected</code>. This argument is deprecated and its usage will start throwing errors in 2.0.0. If you're using it, use <a href="/expect/"><code>assert.expect()</code></a> instead.</p>
<p><code>QUnit.test()</code> can automatically handle the asynchronous resolution of a Promise on your behalf if you return a <code>then</code>able Promise as the result of your callback function.</p>
</longdesc>
<example height="250">
Expand Down
2 changes: 1 addition & 1 deletion entries/deepEqual.xml
Expand Up @@ -18,7 +18,7 @@
</desc>
<longdesc>
<p>The <code>deepEqual()</code> assertion can be used just like <code>equal()</code> when comparing the value of objects, such that <code>{ key: value }</code> is equal to <code>{ key: value }</code>. For non-scalar values, identity will be disregarded by <code>deepEqual</code>.</p>
<p><a href="/notDeepEqual"><code>notDeepEqual()</code></a> can be used to explicitly test deep, strict inequality.</p>
<p><a href="/notDeepEqual/"><code>notDeepEqual()</code></a> can be used to explicitly test deep, strict inequality.</p>
</longdesc>
<example>
<desc>Compare the value of two objects.</desc>
Expand Down
4 changes: 2 additions & 2 deletions entries/equal.xml
Expand Up @@ -18,8 +18,8 @@
</desc>
<longdesc>
<p>The <code>equal</code> assertion uses the simple comparison operator (<code>==</code>) to compare the actual and expected arguments. When they are equal, the assertion passes; otherwise, it fails. When it fails, both actual and expected values are displayed in the test result, in addition to a given message.</p>
<p><a href="/notEqual"><code>notEqual()</code></a> can be used to explicitly test inequality.</p>
<p><a href="/strictEqual"><code>strictEqual()</code></a> can be used to test strict equality.</p>
<p><a href="/notEqual/"><code>notEqual()</code></a> can be used to explicitly test inequality.</p>
<p><a href="/strictEqual/"><code>strictEqual()</code></a> can be used to test strict equality.</p>
</longdesc>
<example>
<desc>The simplest assertion example:</desc>
Expand Down
2 changes: 1 addition & 1 deletion entries/notDeepEqual.xml
Expand Up @@ -18,7 +18,7 @@
</desc>
<longdesc>
<p>The <code>notDeepEqual()</code> assertion can be used just like <code>equal()</code> when comparing the value of objects, such that <code>{ key: value }</code> is equal to <code>{ key: value }</code>. For non-scalar values, identity will be disregarded by <code>notDeepEqual</code>.</p>
<p><a href="/deepEqual"><code>deepEqual()</code></a> can be used to explicitly test deep, strict equality.</p>
<p><a href="/deepEqual/"><code>deepEqual()</code></a> can be used to explicitly test deep, strict equality.</p>
</longdesc>
<example>
<desc>Compare the value of two objects.</desc>
Expand Down
4 changes: 2 additions & 2 deletions entries/notEqual.xml
Expand Up @@ -18,8 +18,8 @@
</desc>
<longdesc>
<p>The <code>notEqual</code> assertion uses the simple inverted comparison operator (<code>!=</code>) to compare the actual and expected arguments. When they aren't equal, the assertion passes; otherwise, it fails. When it fails, both actual and expected values are displayed in the test result, in addition to a given message.</p>
<p><a href="/equal"><code>equal()</code></a> can be used to test equality.</p>
<p><a href="/notStrictEqual"><code>notStrictEqual()</code></a> can be used to test strict inequality.</p>
<p><a href="/equal/"><code>equal()</code></a> can be used to test equality.</p>
<p><a href="/notStrictEqual/"><code>notStrictEqual()</code></a> can be used to test strict inequality.</p>
</longdesc>
<example>
<desc>The simplest assertion example:</desc>
Expand Down
4 changes: 2 additions & 2 deletions entries/notPropEqual.xml
Expand Up @@ -19,8 +19,8 @@
<longdesc>
<p>The <code>notPropEqual</code> assertion uses the strict inverted comparison operator (<code>!==</code>) to compare the actual and expected arguments as Objects regarding only their properties but not their constructors.</p>
<p>When they aren't equal, the assertion passes; otherwise, it fails. When it fails, both actual and expected values are displayed in the test result, in addition to a given message.</p>
<p><a href="/equal"><code>equal()</code></a> can be used to test equality.</p>
<p><a href="/propEqual"><code>propEqual()</code></a> can be used to test strict equality of an Object properties.</p>
<p><a href="/equal/"><code>equal()</code></a> can be used to test equality.</p>
<p><a href="/propEqual/"><code>propEqual()</code></a> can be used to test strict equality of an Object properties.</p>
</longdesc>
<example>
<desc>Compare the values of two objects properties.</desc>
Expand Down
4 changes: 2 additions & 2 deletions entries/notStrictEqual.xml
Expand Up @@ -18,8 +18,8 @@
</desc>
<longdesc>
<p>The <code>notStrictEqual</code> assertion uses the strict inverted comparison operator (<code>!==</code>) to compare the actual and expected arguments. When they aren't equal, the assertion passes; otherwise, it fails. When it fails, both actual and expected values are displayed in the test result, in addition to a given message.</p>
<p><a href="/equal"><code>equal()</code></a> can be used to test equality.</p>
<p><a href="/strictEqual"><code>strictEqual()</code></a> can be used to test strict equality.</p>
<p><a href="/equal/"><code>equal()</code></a> can be used to test equality.</p>
<p><a href="/strictEqual/"><code>strictEqual()</code></a> can be used to test strict equality.</p>
</longdesc>
<example>
<desc>The simplest assertion example:</desc>
Expand Down
4 changes: 2 additions & 2 deletions entries/propEqual.xml
Expand Up @@ -18,8 +18,8 @@
</desc>
<longdesc>
<p>The <code>propEqual()</code> assertion provides strictly (<code>===</code>) comparison of Object properties. Unlike <code>deepEqual()</code>, this assertion can be used to compare two objects made with different constructors and prototype.</p>
<p><a href="/strictEqual"><code>strictEqual()</code></a> can be used to test strict equality.</p>
<p><a href="/notPropEqual"><code>notPropEqual()</code></a> can be used to explicitly test strict inequality of Object properties.</p>
<p><a href="/strictEqual/"><code>strictEqual()</code></a> can be used to test strict equality.</p>
<p><a href="/notPropEqual/"><code>notPropEqual()</code></a> can be used to explicitly test strict inequality of Object properties.</p>
</longdesc>
<example>
<desc>Compare the properties values of two objects.</desc>
Expand Down
4 changes: 2 additions & 2 deletions entries/strictEqual.xml
Expand Up @@ -18,8 +18,8 @@
</desc>
<longdesc>
<p>The <code>strictEqual()</code> assertion provides the most rigid comparison of type and value with the strict equality operator (<code>===</code>).</p>
<p><a href="/equal"><code>equal()</code></a> can be used to test non-strict equality.</p>
<p><a href="/notStrictEqual"><code>notStrictEqual()</code></a> can be used to explicitly test strict inequality.</p>
<p><a href="/equal/"><code>equal()</code></a> can be used to test non-strict equality.</p>
<p><a href="/notStrictEqual/"><code>notStrictEqual()</code></a> can be used to explicitly test strict inequality.</p>
</longdesc>
<example>
<desc>Compare the value of two primitives, having the same value and type.</desc>
Expand Down

0 comments on commit c053a9a

Please sign in to comment.