aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorBrandon Aaron <brandon.aaron@gmail.com>2007-12-15 05:55:33 +0000
committerBrandon Aaron <brandon.aaron@gmail.com>2007-12-15 05:55:33 +0000
commitb264f789b9a6995ad0e7eec6771fafa852717571 (patch)
tree509dfc5dd6b7cafcc433469877d01f3b6ce3a755 /test/unit
parent01e8f33e44b8ee4aa61b48d60cfcae34ac12fcf1 (diff)
downloadjquery-b264f789b9a6995ad0e7eec6771fafa852717571.tar.gz
jquery-b264f789b9a6995ad0e7eec6771fafa852717571.zip
new special events api, ready is now a first class event that you can use bind, unbind or the ready helper, two new events: mouseenter and mouseleave, the hover helper method now uses mouseenter and mouseleave, bind and unbind can now take a space sperated list of event types
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/event.js31
1 files changed, 28 insertions, 3 deletions
diff --git a/test/unit/event.js b/test/unit/event.js
index d0897e464..73ce17cb2 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() {