diff options
author | Ariel Flesler <aflesler@gmail.com> | 2008-05-08 17:11:03 +0000 |
---|---|---|
committer | Ariel Flesler <aflesler@gmail.com> | 2008-05-08 17:11:03 +0000 |
commit | 6a9b73c7b97b7a1dbb3febde80aef70ebe162cd2 (patch) | |
tree | 9a40df7d27bce46d4cac6b636604dc0d3ca066ef /test | |
parent | 487567e82fed4f596b5f97bfbcd5c2429ca35bb0 (diff) | |
download | jquery-6a9b73c7b97b7a1dbb3febde80aef70ebe162cd2.tar.gz jquery-6a9b73c7b97b7a1dbb3febde80aef70ebe162cd2.zip |
test runner: extra tests for $.fn.add enabled by [5503] and a small fix for an html() test.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/core.js | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/test/unit/core.js b/test/unit/core.js index ea13de2c7..d4cc165c5 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -261,7 +261,7 @@ test("get(Number)", function() { });
test("add(String|Element|Array|undefined)", function() {
- expect(8);
+ expect(12);
isSet( $("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );
isSet( $("#sndp").add( $("#en")[0] ).add( $("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" );
ok( $([]).add($("#form")[0].elements).length >= 13, "Check elements from array" );
@@ -280,6 +280,12 @@ test("add(String|Element|Array|undefined)", function() { var notDefined;
equals( $([]).add(notDefined).length, 0, "Check that undefined adds nothing" );
+
+ // Added after #2811
+ equals( $([]).add([window,document,document.body,document]).length, 3, "Pass an array" );
+ equals( $(document).add(document).length, 1, "Check duplicated elements" );
+ equals( $(window).add(window).length, 1, "Check duplicated elements using the window" );
+ ok( $([]).add( document.getElementById('form') ).length >= 13, "Add a form (adds the elements)" );
});
test("each(Function)", function() {
@@ -1148,6 +1154,9 @@ test("html(String)", function() { // using contents will get comments regular, text, and comment nodes
var j = $("#nonnodes").contents();
j.html("<b>bold</b>");
+
+ // this is needed, or the expando added by jQuery unique will yield a different html
+ j.find('b').removeData();
equals( j.html().toLowerCase(), "<b>bold</b>", "Check node,textnode,comment with html()" );
$("#main").html("<select/>");
@@ -1651,4 +1660,4 @@ test("$.makeArray", function(){ equals( $.makeArray(/a/)[0].constructor, RegExp, "Pass makeArray a regex" );
ok( $.makeArray(document.getElementById('form')).length >= 13, "Pass makeArray a form (treat as elements)" );
-});
\ No newline at end of file +});
|