X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Ffx.js;h=c2bf6b43ff514ed4ff98c0865e90267c4fc0f54a;hb=262fcf7b7b919da1564509f621cf7480a5d5572b;hp=6b81322e2a909f6dbd71693072bbc83908ee7b9a;hpb=321267dcecdd812090368bf5bd646b3ddfdb4459;p=jquery.git diff --git a/test/unit/fx.js b/test/unit/fx.js index 6b81322..c2bf6b4 100644 --- a/test/unit/fx.js +++ b/test/unit/fx.js @@ -57,7 +57,7 @@ test("animate option (queue === false)", function () { $foo.animate({width:'100px'}, 3000, function () { // should finish after unqueued animation so second order.push(2); - isSet( order, [ 1, 2 ], "Animations finished in the correct order" ); + same( order, [ 1, 2 ], "Animations finished in the correct order" ); start(); }); $foo.animate({fontSize:'2em'}, {queue:false, duration:10, complete:function () { @@ -67,6 +67,18 @@ test("animate option (queue === false)", function () { }); */ +test("animate with no properties", function() { + expect(1); + + var divs = jQuery("div"), count = 0; + + divs.animate({}, function(){ + count++; + }); + + equals( divs.length, count, "Make sure that callback is called for each element in the set." ); +}); + test("animate duration 0", function() { expect(7);