X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=test%2Funit%2Ffx.js;h=e1793ec1fdc95cefd3dc87d34d4078d449fb93f8;hb=ac00fe5bbb2a95fdb747f76fd9dd7c58ba6a531c;hp=c47fe558f3ad29abccfc0597288905a80f25971e;hpb=4bda398e6aa63082c41bb0d06fcc184acd7f76c5;p=jquery.git diff --git a/test/unit/fx.js b/test/unit/fx.js index c47fe55..e1793ec 100644 --- a/test/unit/fx.js +++ b/test/unit/fx.js @@ -1,13 +1,19 @@ module("fx"); test("show()", function() { - expect(15); + expect(16); var pass = true, div = jQuery("#main div"); div.show().each(function(){ if ( this.style.display == "none" ) pass = false; }); ok( pass, "Show" ); + pass = true; + div.hide().show(null).each(function() { + if ( this.style.display == "none" ) pass = false; + }); + ok( pass, "Show will null speed"); + jQuery("#main").append('

'); var old = jQuery("#show-tests table").show().css("display") !== "table"; @@ -67,6 +73,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);