From: John Resig Date: Sun, 17 Apr 2011 00:39:30 +0000 (-0700) Subject: Add in unit tests for #6993. X-Git-Tag: 1.6rc1~11^2~21 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=5d70c6d797af15641a8e562cf5b3d022a1bdda25;p=jquery.git Add in unit tests for #6993. --- diff --git a/test/unit/event.js b/test/unit/event.js index 1710f6f98..a1aee191f 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -15,7 +15,7 @@ test("null or undefined handler", function() { }); test("bind(), with data", function() { - expect(3); + expect(4); var handler = function(event) { ok( event.data, "bind() with data, check passed data exists" ); equals( event.data.foo, "bar", "bind() with data, Check value of passed data" ); @@ -23,6 +23,12 @@ test("bind(), with data", function() { jQuery("#firstp").bind("click", {foo: "bar"}, handler).click().unbind("click", handler); ok( !jQuery._data(jQuery("#firstp")[0], "events"), "Event handler unbound when using data." ); + + var test = function(){}; + var handler2 = function(event) { + equals( event.data, test, "bind() with function data, Check value of passed data" ); + }; + jQuery("#firstp").bind("click", test, handler2).click().unbind("click", handler2); }); test("click(), with data", function() {