]> source.dussan.org Git - jquery.git/commitdiff
Add more tests for wrapMap
authorOleg <markelog@gmail.com>
Fri, 28 Dec 2012 16:16:28 +0000 (20:16 +0400)
committerOleg <markelog@gmail.com>
Fri, 28 Dec 2012 16:16:28 +0000 (20:16 +0400)
test/unit/manipulation.js

index d5c35ec1b9789878f8ced8d300287107e6fa4311..19e20dd06495f93f32308042d01ba24906bd7863 100644 (file)
@@ -395,7 +395,7 @@ var testAppendForObject = function( valueObj, isFragment ) {
 
 var testAppend = function( valueObj ) {
 
-       expect( 68 );
+       expect( 75 );
 
        testAppendForObject( valueObj, false );
        testAppendForObject( valueObj, true );
@@ -463,6 +463,7 @@ var testAppend = function( valueObj ) {
        jQuery.each( "thead tbody tfoot colgroup caption tr td".split(" "), function( i, name ) {
                $table.append( valueObj( "<" + name + "/>" ) );
                equal( $table.find( name ).length, 1, "Append " + name );
+               ok( jQuery.clean( ["<" + name + "/>"] ).length, name + " wrapped correctly" );
        });
 
        jQuery("#table colgroup").append( valueObj("<col/>") );