From: Jörn Zaefferer Date: Wed, 3 Jan 2007 16:03:16 +0000 (+0000) Subject: Added assertions for #750 X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;ds=sidebyside;h=02483b4a593fb5ae9bb3925f6fe9641e31e2828e;p=jquery.git Added assertions for #750 --- diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 6171614..422f84a 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -1,12 +1,14 @@ module("selector"); test("expressions - element", function() { - expect(5); + expect(7); ok( $("*").size() >= 30, "Select all" ); t( "Element Selector", "div", ["main","foo"] ); t( "Element Selector", "body", ["body"] ); t( "Element Selector", "html", ["html"] ); t( "Parent Element", "div div", ["foo"] ); + t( "Object/Param element", "#object param", ["param1", "param2"] ); + ok( $("param", $("#object")[0]).length == 2, "Object/param as context" ); }); test("expressions - id", function() { @@ -23,6 +25,7 @@ test("expressions - id", function() { t( "All Children of ID with no children", "#firstUL/*", [] ); }); + test("expressions - class", function() { expect(4); t( "Class Selector", ".blog", ["mark","simon"] );