Added a not-yet-failing testcase for #1054

This commit is contained in:
Jörn Zaefferer 2007-03-25 10:34:03 +00:00
parent 88abf0902a
commit a10afee0c3

View file

@ -69,15 +69,16 @@ test("bind() with data and trigger() with data", function() {
}); });
test("toggle(Function,Function) assigned from within one('xxx'), see #1054", function() { test("toggle(Function,Function) assigned from within one('xxx'), see #1054", function() {
expect(3); expect(4);
var first = 0; var first = 0;
$("#simon1").one("change", function() { $("#simon1").one("click", function() {
ok( true, "Execute event only once" ); ok( true, "Execute event only once" );
$(this).toggle(function() { $(this).toggle(function() {
ok( first++ == 0 ); ok( first++ == 0 );
}, function() { }, function() {
ok( first == 1 ); ok( first == 1 );
}); });
}).trigger("change").trigger("change").click().click(); return false;
}).click().click().click();
ok( false, "Seems like this doesn't work (that is, it doesn't fail) when triggering the event programmatically" ); ok( false, "Seems like this doesn't work (that is, it doesn't fail) when triggering the event programmatically" );
}); });