aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2010-02-27 09:49:58 -0500
committerjeresig <jeresig@gmail.com>2010-02-27 09:49:58 -0500
commita49e6b63131e292bc1c31ee98b300ba87ce99162 (patch)
treea7931668c7f71e7b73d6f341489a79448a7c146c /test
parent42568db4c414d4435f2f7e89be87d66645c42e1c (diff)
downloadjquery-a49e6b63131e292bc1c31ee98b300ba87ce99162.tar.gz
jquery-a49e6b63131e292bc1c31ee98b300ba87ce99162.zip
Attach data directly to plain objects, no reason to use the central jQuery.cache. Fixes #6189.
Diffstat (limited to 'test')
-rw-r--r--test/unit/data.js14
1 files changed, 11 insertions, 3 deletions
diff --git a/test/unit/data.js b/test/unit/data.js
index 0d75bc444..11bce4d14 100644
--- a/test/unit/data.js
+++ b/test/unit/data.js
@@ -18,13 +18,13 @@ test("expando", function(){
equals( jQuery.expando in obj, true, "jQuery.data added an expando to the object" );
var id = obj[jQuery.expando];
- equals( id in jQuery.cache, true, "jQuery.data added an entry to jQuery.cache" );
+ equals( id in jQuery.cache, false, "jQuery.data did not add an entry to jQuery.cache" );
- equals( jQuery.cache[id].foo, "bar", "jQuery.data worked correctly" );
+ equals( id.foo, "bar", "jQuery.data worked correctly" );
});
test("jQuery.data", function() {
- expect(9);
+ expect(12);
var div = document.createElement("div");
ok( jQuery.data(div, "test") === undefined, "Check for no data exists" );
@@ -49,6 +49,14 @@ test("jQuery.data", function() {
jQuery.data(div, { "test": "in", "test2": "in2" });
equals( jQuery.data(div, "test"), "in", "Verify setting an object in data." );
equals( jQuery.data(div, "test2"), "in2", "Verify setting an object in data." );
+
+ var obj = {};
+ jQuery.data( obj, "prop", true );
+
+ ok( obj[ jQuery.expando ], "Data is being stored on the object." );
+ ok( obj[ jQuery.expando ].prop, "Data is being stored on the object." );
+
+ equals( jQuery.data( obj, "prop" ), true, "Make sure the right value is retrieved." );
});
test(".data()", function() {