diff options
author | Ariel Flesler <aflesler@gmail.com> | 2008-12-30 02:31:26 +0000 |
---|---|---|
committer | Ariel Flesler <aflesler@gmail.com> | 2008-12-30 02:31:26 +0000 |
commit | 4afa60835146e71c0e57b492a1cca278eaf1ef9c (patch) | |
tree | 5fc6e4161c21a3a3ccd6a76d97e787183f31f057 /test/unit/fx.js | |
parent | 1b0276dc57cbca869027ba19986b0810f7042854 (diff) | |
download | jquery-4afa60835146e71c0e57b492a1cca278eaf1ef9c.tar.gz jquery-4afa60835146e71c0e57b492a1cca278eaf1ef9c.zip |
jquery data: Closes #3539. Exposed jQuery.queue. Moved all the data and queue functions to their own module. Made the dequeue function more generic(designed to be used on functions). Closes #3748. Reverted a previous modification.
Diffstat (limited to 'test/unit/fx.js')
-rw-r--r-- | test/unit/fx.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/unit/fx.js b/test/unit/fx.js index 8af92979e..2ee3d30db 100644 --- a/test/unit/fx.js +++ b/test/unit/fx.js @@ -34,23 +34,6 @@ test("animate option (queue === false)", function () { }); }); -test("queue() defaults to 'fx' type", function () { - expect(2); - stop(); - - var $foo = jQuery("#foo"); - $foo.queue("fx", [ "sample", "array" ]); - var arr = $foo.queue(); - isSet(arr, [ "sample", "array" ], "queue() got an array set with type 'fx'"); - $foo.queue([ "another", "one" ]); - var arr = $foo.queue("fx"); - isSet(arr, [ "another", "one" ], "queue('fx') got an array set with no type"); - // clean up after test - $foo.queue([]); - - start(); -}); - test("stop()", function() { expect(3); stop(); |