X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fmanipulation.js;h=9242dddb5f7ebcb5e886d75e1088397cf92ce633;hb=1e64d581830f735999b60939eccf9bcdcb2e9ef9;hp=0ebae1638471f3defe49bddb1fa0ba6084d512dd;hpb=1b67aaee74c9b683ac31893b40077abd62e6d8c6;p=jquery.git diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index 0ebae16..9242ddd 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -619,7 +619,7 @@ test("clone() on XML nodes", function() { } test("val()", function() { - expect(15); + expect(17); document.getElementById('text1').value = "bla"; equals( jQuery("#text1").val(), "bla", "Check for modified value of input element" ); @@ -648,10 +648,13 @@ test("val()", function() { var checks = jQuery("").appendTo("#form") .add( jQuery("").appendTo("#form") ) - .add( jQuery("").appendTo("#form") ); + .add( jQuery("").appendTo("#form") ) + .add( jQuery("").appendTo("#form") ); same( checks.serialize(), "", "Get unchecked values." ); + equals( checks.eq(3).val(), "on", "Make sure a value of 'on' is provided if none is specified." ); + checks.val([ "2" ]); same( checks.serialize(), "test=2", "Get a single checked value." ); @@ -661,6 +664,9 @@ test("val()", function() { checks.val([ "", "2" ]); same( checks.serialize(), "test=2&test=", "Get multiple checked values." ); + checks.val([ "1", "on" ]); + same( checks.serialize(), "test=1&test=on", "Get multiple checked values." ); + checks.remove(); });