Adding data and removeData tests

This commit is contained in:
Brandon Aaron 2007-12-16 04:04:29 +00:00
parent feb9051c0e
commit 67c7b46ea3

View file

@ -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" );
});
});