X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fevent.js;h=248094a9666ca3f08ac70b0b96316172c42fbdaf;hb=b740fe5632b8731a140f16a2f6855910ea6957b9;hp=d0897e464a7a0968902de4af0f5a836f09e0cd1b;hpb=91f1299f68a68728467a2566a38845d82e30606f;p=jquery.git diff --git a/test/unit/event.js b/test/unit/event.js index d0897e4..248094a 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -1,7 +1,7 @@ module("event"); test("bind()", function() { - expect(16); + expect(18); var handler = function(event) { ok( event.data, "bind() with data, check passed data exists" ); @@ -18,7 +18,20 @@ test("bind()", function() { ok( data, "Check trigger data" ); ok( data.bar == "foo", "Check value of trigger data" ); }; - $("#firstp").bind("click", {foo: "bar"}, handler).trigger("click", [{bar: "foo"}]).unbind(handler); + $("#firstp").bind("click", {foo: "bar"}, handler).trigger("click", [{bar: "foo"}]).unbind("click", handler); + + reset(); + var clickCounter = mouseoverCounter = 0; + var handler = function(event) { + if (event.type == "click") + clickCounter += 1; + else if (event.type == "mouseover") + mouseoverCounter += 1; + }; + $("#firstp").bind("click mouseover", handler).trigger("click").trigger("mouseover"); + ok( clickCounter == 1, "bind() with multiple events at once" ); + ok( mouseoverCounter == 1, "bind() with multiple events at once" ); + reset(); var handler = function(event) { @@ -96,7 +109,7 @@ test("click()", function() { }); test("unbind(event)", function() { - expect(6); + expect(8); var el = $("#firstp"); el.click(function() { ok( true, "Fake normal bind" ); @@ -118,6 +131,18 @@ test("unbind(event)", function() { el.unbind('click'); ok( !jQuery.data(el[0], "events"), "Removed the events expando after all handlers are unbound." ); + + reset(); + var clickCounter = mouseoverCounter = 0; + var handler = function(event) { + if (event.type == "click") + clickCounter += 1; + else if (event.type == "mouseover") + mouseoverCounter += 1; + }; + $("#firstp").bind("click mouseover", handler).unbind("click mouseover", handler).trigger("click").trigger("mouseover"); + ok( clickCounter == 0, "unbind() with multiple events at once" ); + ok( mouseoverCounter == 0, "unbind() with multiple events at once" ); }); test("trigger(event, [data], [fn])", function() { @@ -192,6 +217,7 @@ test("trigger(event, [data], [fn])", function() { // Trigger only the handlers (no native) and extra fn, with external event obj // Triggers 9 + eventObj = jQuery.event.fix({ type: "foo", target: document.body }); equals( $("#firstp").triggerHandler("click", [eventObj, 1, "2", "abc"], handler), "test", "Verify handler response" ); var pass = true; @@ -238,3 +264,11 @@ test("toggle(Function, Function)", function() { return false; }).click().click().click(); }); + +test("jQuery(function($) {})", function() { + stop(); + jQuery(function($) { + equals(jQuery, $, "ready doesn't provide an event object, instead it provides a reference to the jQuery function, see http://docs.jquery.com/Events/ready#fn"); + start(); + }); +});