Add unit tests for .html( number ). Close gh-1447.

This commit is contained in:
Jakob Stoeck 2013-11-25 19:48:10 +01:00 committed by Richard Gibson
parent b407bddea2
commit ed291938c2

View File

@ -1333,7 +1333,7 @@ function childNodeNames( node ) {
}
function testHtml( valueObj ) {
expect( 37 );
expect( 40 );
var actual, expected, tmp,
div = jQuery("<div></div>"),
@ -1353,6 +1353,9 @@ function testHtml( valueObj ) {
equal( div.html(valueObj(5)).html(), "5", "Setting a number as html" );
equal( div.html(valueObj(0)).html(), "0", "Setting a zero as html" );
equal( div.html(valueObj(Infinity)).html(), "Infinity", "Setting Infinity as html" );
equal( div.html(valueObj(NaN)).html(), "", "Setting NaN as html" );
equal( div.html(valueObj(1e2)).html(), "100", "Setting exponential number notation as html" );
div.html( valueObj("&#160;&amp;") );
equal(
@ -1438,7 +1441,7 @@ function testHtml( valueObj ) {
ok( /^[^<]*[^<\s][^<]*$/.test( fixture.html() ), "Replace html with text" );
}
test( "html(String)", function() {
test( "html(String|Number)", function() {
testHtml( manipulationBareObj );
});