diff options
author | timmywil <timmywillisn@gmail.com> | 2012-05-29 12:40:13 -0400 |
---|---|---|
committer | timmywil <timmywillisn@gmail.com> | 2012-05-29 13:13:26 -0400 |
commit | a8d9d05388465b16880be43629af008ff19b7725 (patch) | |
tree | d917fe6deeb8678aeba38ccd1e9117cff07c808f /test/unit/selector.js | |
parent | 02dd7c570bf4dbbdfc168f4352d04c667447be5d (diff) | |
download | jquery-a8d9d05388465b16880be43629af008ff19b7725.tar.gz jquery-a8d9d05388465b16880be43629af008ff19b7725.zip |
Add quick-start documentation for testing with QUnit and using jQuery's helper methods.
Diffstat (limited to 'test/unit/selector.js')
-rw-r--r-- | test/unit/selector.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/unit/selector.js b/test/unit/selector.js index d605ab8df..079d130cc 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -1,9 +1,9 @@ +module("selector - jQuery only", { teardown: moduleTeardown }); + /** * This test page is for selector tests that require jQuery in order to do the selection */ -module("selector - jQuery only", { teardown: moduleTeardown }); - test("element - jQuery only", function() { expect( 7 ); @@ -65,7 +65,8 @@ testIframe("selector/html5_selector", "attributes - jQuery.attr", function( jQue expect(35); /** - * Returns an array of elements with the given IDs, eg. + * Returns an array of elements with the given IDs + * q & t are added here for the iFrame's context */ function q() { var r = [], |