test runner: recloses #3102. Adding one test for $().eq("1")
[jquery.git] / test / unit / core.js
index a0e7b1f..dbf23e7 100644 (file)
@@ -1174,7 +1174,7 @@ test("val(String/Number)", function() {
 var scriptorder = 0;\r
 \r
 test("html(String)", function() {\r
-       expect(11);\r
+       expect(13);\r
        var div = jQuery("#main > div");\r
        div.html("<b>test</b>");\r
        var pass = true;\r
@@ -1196,6 +1196,10 @@ test("html(String)", function() {
        jQuery("#main select").html("<option>O1</option><option selected='selected'>O2</option><option>O3</option>");\r
        equals( jQuery("#main select").val(), "O2", "Selected option correct" );\r
 \r
+       var $div = jQuery('<div />');\r
+       equals( $div.html( 5 ).html(), '5', 'Setting a number as html' );\r
+       equals( $div.html( 0 ).html(), '0', 'Setting a zero as html' );\r
+\r
        stop();\r
 \r
        jQuery("#main").html('<script type="text/javascript">ok( true, "jQuery().html().evalScripts() Evals Scripts Twice in Firefox, see #975" );</script>');\r
@@ -1571,13 +1575,15 @@ test("empty()", function() {
 });\r
 \r
 test("slice()", function() {\r
-       expect(5);\r
+       expect(6);\r
        isSet( jQuery("#ap a").slice(1,2), q("groups"), "slice(1,2)" );\r
        isSet( jQuery("#ap a").slice(1), q("groups", "anchor1", "mark"), "slice(1)" );\r
        isSet( jQuery("#ap a").slice(0,3), q("google", "groups", "anchor1"), "slice(0,3)" );\r
        isSet( jQuery("#ap a").slice(-1), q("mark"), "slice(-1)" );\r
 \r
        isSet( jQuery("#ap a").eq(1), q("groups"), "eq(1)" );\r
+       \r
+       isSet( jQuery("#ap a").eq('1'), q("groups"), "eq('1')" );\r
 });\r
 \r
 test("map()", function() {\r