X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Fselector%2FselectorTest.js;h=03e72f2cf9e1a6e25268052eda813593b55eefa9;hb=c60d4519bc25003dcde81d4967ab8060b3184a0b;hp=617161457671a97ba9de084d3b21545d9ec24c9e;hpb=61504d516abcc7bae036056853f21601ad310826;p=jquery.git diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 6171614..03e72f2 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -1,28 +1,33 @@ module("selector"); test("expressions - element", function() { - expect(5); + expect(6); 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"] ); + ok( $("param", "#object1").length == 2, "Object/param as context" ); }); test("expressions - id", function() { - expect(8); + expect(10); t( "ID Selector", "#body", ["body"] ); t( "ID Selector w/ Element", "body#body", ["body"] ); t( "ID Selector w/ Element", "ul#first", [] ); + t( "ID selector with existing ID descendant", "#firstp #simon1", ["simon1"] ); + t( "ID selector with non-existing descendant", "#firstp #foobar", [] ); t( "ID Selector, child ID present", "#form > #radio1", ["radio1"] ); // bug #267 t( "ID Selector, not an ancestor ID", "#form #first", [] ); t( "ID Selector, not a child ID", "#form > #option1a", [] ); - t( "All Children of ID", "#foo/*", ["sndp", "en", "sap"] ); - t( "All Children of ID with no children", "#firstUL/*", [] ); + t( "All Children of ID", "#foo/*", ["sndp", "en", "sap"] ); + t( "All Children of ID with no children", "#firstUL/*", [] ); + }); + test("expressions - class", function() { expect(4); t( "Class Selector", ".blog", ["mark","simon"] );