X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=test%2Funit%2Fcore.js;h=a4e82eb6e0ec2e3f695bc2eb07e2ea21af087fee;hb=f1f5cd9f6a80b0de18cc0402f28b440f48b95f83;hp=9d91c4f754d040a71c0e8f80fe14cd59730c7fa4;hpb=1c8c3883a98d7d896efefe92eb0d22b1681e92f1;p=jquery.git diff --git a/test/unit/core.js b/test/unit/core.js index 9d91c4f..a4e82eb 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -1688,13 +1688,6 @@ test("jQuery.each(Object,Function)", function() { equals( total, 3, "Looping over an object, with break" ); }); -test("jQuery.prop", function() { - expect(2); - var handle = function() { return this.id }; - equals( jQuery.prop(jQuery("#ap")[0], handle), "ap", "Check with Function argument" ); - equals( jQuery.prop(jQuery("#ap")[0], "value"), "value", "Check with value argument" ); -}); - test("jQuery.className", function() { expect(6); var x = jQuery("

Hi

")[0];