added tests for show/hide with falsy, non-zero values
This commit is contained in:
parent
21441b1cbc
commit
a63754aa4e
29
test/unit/effects.js
vendored
29
test/unit/effects.js
vendored
|
@ -1,18 +1,37 @@
|
||||||
module("effects");
|
module("effects");
|
||||||
|
|
||||||
test("show()", function() {
|
test("show()", function() {
|
||||||
expect(16);
|
expect(23);
|
||||||
var pass = true, div = jQuery("#main div");
|
var pass = true, div = jQuery("#main div");
|
||||||
div.show().each(function(){
|
div.show().each(function(){
|
||||||
if ( this.style.display == "none" ) pass = false;
|
if ( this.style.display == "none" ) pass = false;
|
||||||
});
|
});
|
||||||
ok( pass, "Show" );
|
ok( pass, "Show" );
|
||||||
|
|
||||||
pass = true;
|
var speeds = {
|
||||||
div.hide().show(null).each(function() {
|
"null speed": null,
|
||||||
if ( this.style.display == "none" ) pass = false;
|
"undefined speed": undefined,
|
||||||
|
"empty string speed": "",
|
||||||
|
"false speed": false
|
||||||
|
};
|
||||||
|
|
||||||
|
jQuery.each(speeds, function(name, speed) {
|
||||||
|
pass = true;
|
||||||
|
div.hide().show(speed).each(function() {
|
||||||
|
if ( this.style.display == "none" ) pass = false;
|
||||||
|
});
|
||||||
|
ok( pass, "Show with " + name);
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
jQuery.each(speeds, function(name, speed) {
|
||||||
|
pass = true;
|
||||||
|
div.hide().show(speed, function() {
|
||||||
|
pass = false;
|
||||||
|
});
|
||||||
|
ok( pass, "Show with " + name + " does not call animate callback");
|
||||||
});
|
});
|
||||||
ok( pass, "Show will null speed");
|
|
||||||
|
|
||||||
jQuery("#main").append('<div id="show-tests"><div><p><a href="#"></a></p><code></code><pre></pre><span></span></div><table><thead><tr><th></th></tr></thead><tbody><tr><td></td></tr></tbody></table><ul><li></li></ul></div>');
|
jQuery("#main").append('<div id="show-tests"><div><p><a href="#"></a></p><code></code><pre></pre><span></span></div><table><thead><tr><th></th></tr></thead><tbody><tr><td></td></tr></tbody></table><ul><li></li></ul></div>');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue