X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fselector.js;h=459d0d9fc976d529ad1f366a9ea09e10785039e5;hb=90a4abd5111e57213059eb80876551ae1fac6c53;hp=382ca5001822ad8f9b3cc9cb04d0070e84ef6170;hpb=f0505c6d75722d5617dedfd5f6165285c18103c8;p=jquery.git diff --git a/test/unit/selector.js b/test/unit/selector.js index 382ca50..459d0d9 100644 --- a/test/unit/selector.js +++ b/test/unit/selector.js @@ -2,7 +2,7 @@ module("selector"); test("element", function() { expect(19); - reset(); + QUnit.reset(); ok( jQuery("*").size() >= 30, "Select all" ); var all = jQuery("*"), good = true; @@ -53,10 +53,11 @@ if ( location.protocol != "file:" ) { } test("broken", function() { - expect(7); + expect(8); function broken(name, selector) { try { jQuery(selector); + ok( false, name + ": " + selector ); } catch(e){ ok( typeof e === "string" && e.indexOf("Syntax error") >= 0, name + ": " + selector ); @@ -70,6 +71,7 @@ test("broken", function() { broken( "Broken Selector", "()", [] ); broken( "Broken Selector", "<>", [] ); broken( "Broken Selector", "{}", [] ); + broken( "Doesn't exist", ":visble", [] ); }); test("id", function() { @@ -172,8 +174,8 @@ test("name", function() { equals( a.length, 3, "Make sure the right number of elements were inserted." ); equals( a[1].id, "tName2ID", "Make sure the right number of elements were inserted." ); - t( "Find elements that have similar IDs", "[name=tName1]", ["tName1ID"] ); - t( "Find elements that have similar IDs", "[name=tName2]", ["tName2ID"] ); + equals( jQuery("[name=tName1]")[0], a[0], "Find elements that have similar IDs" ); + equals( jQuery("[name=tName2]")[0], a[1], "Find elements that have similar IDs" ); t( "Find elements that have similar IDs", "#tName2ID", ["tName2ID"] ); a.remove(); @@ -290,7 +292,7 @@ test("pseudo - child", function() { t( "First Child", "p:first-child", [] ); - reset(); + QUnit.reset(); t( "Last Child", "p:last-child", ["sap"] ); t( "Last Child", "a:last-child", ["simon1","anchor1","mark","yahoo","anchor2","simon","liveLink1","liveLink2"] ); @@ -324,18 +326,19 @@ test("pseudo - misc", function() { t( "Headers", ":header", ["qunit-header", "qunit-banner", "qunit-userAgent"] ); t( "Has Children - :has()", "p:has(a)", ["firstp","ap","en","sap"] ); - t( "Text Contains", "a:contains('Google')", ["google","groups"] ); - t( "Text Contains", "a:contains('Google Groups')", ["groups"] ); + t( "Text Contains", "a:contains(Google)", ["google","groups"] ); + t( "Text Contains", "a:contains(Google Groups)", ["groups"] ); - t( "Text Contains", "a:contains('Google Groups (Link)')", ["groups"] ); - t( "Text Contains", "a:contains('(Link)')", ["groups"] ); + t( "Text Contains", "a:contains(Google Groups (Link))", ["groups"] ); + t( "Text Contains", "a:contains((Link))", ["groups"] ); }); test("pseudo - :not", function() { expect(24); t( "Not", "a.blog:not(.link)", ["mark"] ); - t( "Not - multiple", "#form option:not(:contains('Nothing'),#option1b,:selected)", ["option1c", "option1d", "option2b", "option2c", "option3d", "option3e"] ); + + t( "Not - multiple", "#form option:not(:contains(Nothing),#option1b,:selected)", ["option1c", "option1d", "option2b", "option2c", "option3d", "option3e"] ); t( "Not - recursive", "#form option:not(:not(:selected))[id^='option3']", [ "option3b", "option3c"] ); t( ":not() failing interior", "p:not(.foo)", ["firstp","ap","sndp","en","sap","first"] );