aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2010-10-11 17:52:00 -0400
committerJohn Resig <jeresig@gmail.com>2010-10-11 17:52:00 -0400
commit1dee0d2ed8ae669d8276dbca06e27b70acb9a030 (patch)
treec53490b6db62ca648bf688ee3e223669d58415bc /test
parentd23f63b13ea47ac3e91906e5ac1e2503400cd903 (diff)
downloadjquery-1dee0d2ed8ae669d8276dbca06e27b70acb9a030.tar.gz
jquery-1dee0d2ed8ae669d8276dbca06e27b70acb9a030.zip
Added some more tests relating to attaching data to a window.
Diffstat (limited to 'test')
-rw-r--r--test/unit/data.js13
1 files changed, 11 insertions, 2 deletions
diff --git a/test/unit/data.js b/test/unit/data.js
index 2efa98424..81f5e61fa 100644
--- a/test/unit/data.js
+++ b/test/unit/data.js
@@ -38,7 +38,7 @@ test("jQuery.acceptData", function() {
});
test("jQuery.data", function() {
- expect(12);
+ expect(15);
var div = document.createElement("div");
ok( jQuery.data(div, "test") === undefined, "Check for no data exists" );
@@ -71,6 +71,11 @@ test("jQuery.data", function() {
ok( obj.prop, "Data is being stored on the object" );
equals( jQuery.data( obj, "prop" ), true, "Make sure the right value is retrieved" );
+
+ jQuery.data( window, "BAD", true );
+ ok( !window[ jQuery.expando ], "Make sure there is no expando on the window object." );
+ ok( !window.BAD, "And make sure that the property wasn't set directly on the window." );
+ ok( jQuery.data( window, "BAD" ), "Make sure that the value was set." );
});
test(".data()", function() {
@@ -279,7 +284,7 @@ test(".data(Object)", function() {
});
test("jQuery.removeData", function() {
- expect(4);
+ expect(5);
var div = jQuery("#foo")[0];
jQuery.data(div, "test", "testing");
jQuery.removeData(div, "test");
@@ -291,6 +296,10 @@ test("jQuery.removeData", function() {
jQuery.removeData(obj, "test");
equals( jQuery.data(obj, "test"), undefined, "Check removal of data on plain object" );
equals( obj.test, undefined, "Check removal of data directly from plain object" );
+
+ jQuery.data( window, "BAD", true );
+ jQuery.removeData( window, "BAD" );
+ ok( !jQuery.data( window, "BAD" ), "Make sure that the value was not still set." );
});
test(".removeData()", function() {