Lots of improvements. Added support for .not( jQuery("...") ) and support for multi...
[jquery.git] / src / jquery / coreTest.js
index ed7b52b..ccd84f7 100644 (file)
@@ -472,9 +472,8 @@ test("html(String)", function() {
 });\r
 \r
 test("filter()", function() {\r
-       expect(5);\r
+       expect(4);\r
        isSet( $("input").filter(":checked").get(), q("radio2", "check1"), "filter(String)" );\r
-       isSet( $("p").filter(["#ap", "#sndp"]).get(), q("ap", "sndp"), "filter(Array<String>)" );\r
        isSet( $("p").filter("#ap, #sndp").get(), q("ap", "sndp"), "filter('String, String')" );\r
        isSet( $("p").filter("#ap,#sndp").get(), q("ap", "sndp"), "filter('String,String')" );\r
        isSet( $("p").filter(function() { return !$("a", this).length }).get(), q("sndp", "first"), "filter(Function)" );\r
@@ -483,7 +482,7 @@ test("filter()", function() {
 test("not(String)", function() {\r
        expect(2);\r
        ok( $("#main > p#ap > a").not("#google").length == 2, "not('selector')" );\r
-       isSet( $("p").not("#ap, #sndp").get(), q("firstp", "en", "sap", "first", "result"), "not('selector, selector')" );\r
+       isSet( $("p").not("#ap, #sndp, .result").get(), q("firstp", "en", "sap", "first"), "not('selector, selector')" );\r
 });\r
 \r
 \r
@@ -644,7 +643,7 @@ test("empty()", function() {
 \r
 test("eq(), gt(), lt(), contains()", function() {\r
        ok( $("#ap a").eq(1)[0].id == "groups", "eq()" );\r
-       ok( $("#ap a").gt(1).get(), q("groups", "anchor1", "mark"), "gt()" );\r
-       ok( $("#ap a").lt(2).get(), q("google", "groups", "anchor1"), "lt()" );\r
-       ok( $("#foo a").contains("log").get(), q("anchor2", "simon"), "contains()" );\r
-});
\ No newline at end of file
+       isSet( $("#ap a").gt(0).get(), q("groups", "anchor1", "mark"), "gt()" );\r
+       isSet( $("#ap a").lt(3).get(), q("google", "groups", "anchor1"), "lt()" );\r
+       isSet( $("#foo a").contains("log").get(), q("anchor2", "simon"), "contains()" );\r
+});\r