Moved the bulk of the selector code out into a separate file, changed the build files...
[jquery.git] / src / jquery / coreTest.js
index 67dea20..ada7195 100644 (file)
@@ -564,16 +564,3 @@ test("removeClass(String) - add three classes and remove again", function() {
 test("removeAttr(String", function() {\r
        ok( $('#mark').removeAttr("class")[0].className == "", "remove class" );\r
 });\r
-\r
-test("unbind(event)", function() {\r
-       expect(3);\r
-       var el = $("#firstp");\r
-       el.click(function() {\r
-               ok( true, "Fake normal bind" );\r
-       });\r
-       el.click(function(event) {\r
-               el.unbind(event);\r
-               ok( true, "Fake onebind" );\r
-       });\r
-       el.click().click();\r
-});\r