aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2010-10-17 14:48:24 -0400
committerJohn Resig <jeresig@gmail.com>2010-10-17 14:48:24 -0400
commit008e971943b0ce55333a65caea7f64eb82b985ac (patch)
tree1dd1d9bdca98b67c5edbdc7c03b966cc47249961
parent97dfa0d5a85a32fe56aba837bbf2bc889b092d2b (diff)
downloadjquery-008e971943b0ce55333a65caea7f64eb82b985ac.tar.gz
jquery-008e971943b0ce55333a65caea7f64eb82b985ac.zip
Add some more tests to make sure that pulling in data- properties on an element with no data set, works.
-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 c867fb546..315043ca1 100644
--- a/test/unit/data.js
+++ b/test/unit/data.js
@@ -184,9 +184,10 @@ test(".data(String) and .data(String, Object)", function() {
});
test("data-* attributes", function() {
- expect(33);
+ expect(37);
var div = jQuery("<div>"),
- child = jQuery("<div data-myobj='old data' data-ignored=\"DOM\" data-other='test'></div>");
+ child = jQuery("<div data-myobj='old data' data-ignored=\"DOM\" data-other='test'></div>"),
+ dummy = jQuery("<div data-myobj='old data' data-ignored=\"DOM\" data-other='test'></div>");
equals( div.data("attr"), undefined, "Check for non-existing data-attr attribute" );
@@ -208,10 +209,11 @@ test("data-* attributes", function() {
child.data("ignored", "cache");
equals( child.data("ignored"), "cache", "Cached data used before DOM data-* fallback");
- var obj = child.data(), check = [ "myobj", "ignored", "other" ], num = 0;
+ var obj = child.data(), obj2 = dummy.data(), check = [ "myobj", "ignored", "other" ], num = 0, num2 = 0;
for ( var i = 0, l = check.length; i < l; i++ ) {
ok( obj[ check[i] ], "Make sure data- property exists when calling data-." );
+ ok( obj2[ check[i] ], "Make sure data- property exists when calling data-." );
}
for ( var prop in obj ) {
@@ -220,6 +222,12 @@ test("data-* attributes", function() {
equals( num, check.length, "Make sure that the right number of properties came through." );
+ for ( var prop in obj2 ) {
+ num2++;
+ }
+
+ equals( num2, check.length, "Make sure that the right number of properties came through." );
+
child.attr("data-other", "newvalue");
equals( child.data("other"), "test", "Make sure value was pulled in properly from a .data()." );