X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=test%2Funit%2Fevent.js;h=ba29ab7ecccd228da2cda7b8e365d6df6ffeb733;hb=b0c7df65d0f92b77752e8f9b33898d0e3b2c05e8;hp=da6dd792ccc7c34690f24af04d3fd238231e35b3;hpb=2fa855601e9ece6c0a240202b0534702b7e5c153;p=jquery.git diff --git a/test/unit/event.js b/test/unit/event.js index da6dd79..ba29ab7 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -72,6 +72,10 @@ test("bind(), trigger change on select", function() { test("bind(), namespaced events, cloned events", function() { expect(6); + $("#firstp").bind("custom.test",function(e){ + ok(true, "Custom event triggered"); + }); + $("#firstp").bind("click",function(e){ ok(true, "Normal click triggered"); }); @@ -92,6 +96,12 @@ test("bind(), namespaced events, cloned events", function() { // Trigger the remaining fn (1) $("#firstp").trigger("click"); + // Remove the remaining fn + $("#firstp").unbind(".test"); + + // Trigger the remaining fn (0) + $("#firstp").trigger("custom"); + // using contents will get comments regular, text, and comment nodes $("#nonnodes").contents().bind("tester", function () { equals(this.nodeType, 1, "Check node,textnode,comment bind just does real nodes" );