From 5d70c6d797af15641a8e562cf5b3d022a1bdda25 Mon Sep 17 00:00:00 2001 From: John Resig Date: Sat, 16 Apr 2011 17:39:30 -0700 Subject: [PATCH] Add in unit tests for #6993. --- test/unit/event.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/unit/event.js b/test/unit/event.js index 1710f6f9..a1aee191 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() {