jquery/src/fx/fxTest.js
Jörn Zaefferer 7cc550727c Testsuite 2.0
2006-11-18 13:37:01 +00:00

12 lines
361 B
JavaScript

module("fx");
test("animate(Hash, Object, Function) - assert that animate doesn't modify its arguments", function() {
expect(1);
stop();
var hash = {opacity: 'show'};
var hashCopy = $.extend({}, hash);
$('#foo').animate(hash, 'fast', function() {
ok( hash.opacity == hashCopy.opacity, 'Check if animate changed the hash parameter' );
start();
});
});