Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Adding data and removeData tests
- Loading branch information
Showing
with
19 additions
and
1 deletion.
-
+19
−1
test/unit/core.js
There are no files selected for viewing
|
|
@@ -1262,6 +1262,24 @@ test("$.className", function() { |
|
|
ok( c.has(x, "bar"), "Check has2" ); |
|
|
}); |
|
|
|
|
|
test("$.data", function() { |
|
|
expect(3); |
|
|
var div = $("#foo")[0]; |
|
|
ok( jQuery.data(div, "test") == undefined, "Check for no data exists" ); |
|
|
jQuery.data(div, "test", "success"); |
|
|
ok( jQuery.data(div, "test") == "success", "Check for added data" ); |
|
|
jQuery.data(div, "test", "overwritten"); |
|
|
ok( jQuery.data(div, "test") == "overwritten", "Check for overwritten data" ); |
|
|
}); |
|
|
|
|
|
test("$.removeData", function() { |
|
|
expect(1); |
|
|
var div = $("#foo")[0]; |
|
|
jQuery.data(div, "test", "testing"); |
|
|
jQuery.removeData(div, "test"); |
|
|
ok( jQuery.data(div, "test") == undefined, "Check removal of data" ); |
|
|
}); |
|
|
|
|
|
test("remove()", function() { |
|
|
expect(6); |
|
|
$("#ap").children().remove(); |
|
|
@@ -1350,4 +1368,4 @@ test("contents()", function() { |
|
|
var c = $("#nonnodes").contents().contents(); |
|
|
equals( c.length, 1, "Check node,textnode,comment contents is just one" ); |
|
|
equals( c[0].nodeValue, "hi", "Check node,textnode,comment contents is just the one from span" ); |
|
|
}); |
|
|
});
|