X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;ds=sidebyside;f=test%2Funit%2Fattributes.js;h=cb489804dda9b20db1eda52534c9f8c1ce30be74;hb=148fb7ba8e992dd70c64cdc6a1c6f643fd1ba160;hp=67077b9b4c14799a8eb88d9a00e02cbd7e5d3877;hpb=0ab118ae0d1f239e96f433fbbb65eee87bd529d9;p=jquery.git diff --git a/test/unit/attributes.js b/test/unit/attributes.js index 67077b9..cb48980 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -6,7 +6,7 @@ var functionReturningObj = function(value) { return (function() { return value; test("attr(String)", function() { expect(28); - // This one sometimes fails randomally ?! + // This one sometimes fails randomly ?! equals( jQuery('#text1').attr('value'), "Test", 'Check for value attribute' ); equals( jQuery('#text1').attr('value', "Test2").attr('defaultValue'), "Test", 'Check for defaultValue attribute' ); @@ -70,7 +70,7 @@ if ( !isLocal ) { test("attr(String, Function)", function() { expect(2); - equals( jQuery('#text1').attr('value', function() { return this.id })[0].value, "text1", "Set value from id" ); + equals( jQuery('#text1').attr('value', function() { return this.id ;})[0].value, "text1", "Set value from id" ); equals( jQuery('#text1').attr('title', function(i) { return i }).attr('title'), "0", "Set value with an index"); }); @@ -184,7 +184,7 @@ test("attr(String, Object)", function() { }); test("attr(jquery_method)", function(){ - expect(8); + expect(7); var $elem = jQuery("
"), elem = $elem[0]; @@ -196,9 +196,6 @@ test("attr(jquery_method)", function(){ $elem.attr('text', 'bar'); equals( elem.innerHTML, 'bar', 'attr(text)'); - $elem.attr('addClass', 'css'); - equals( elem.className, 'css', 'attr(addClass)'); - $elem.attr('css', {color:'red'}); ok( /^(#ff0000|red)$/i.test(elem.style.color), 'attr(css)'); @@ -302,7 +299,7 @@ var testAddClass = function(valueObj) { var j = jQuery("#nonnodes").contents(); j.addClass( valueObj("asdf") ); ok( j.hasClass("asdf"), "Check node,textnode,comment for addClass" ); -} +}; test("addClass(String)", function() { testAddClass(bareObj); @@ -427,23 +424,37 @@ test("removeAttr(Function)", function() { }); test("addClass, removeClass, hasClass", function() { - expect(6); - + expect(14); + var jq = jQuery("

Hi

"), x = jq[0]; - + jq.addClass("hi"); equals( x.className, "hi", "Check single added class" ); - + jq.addClass("foo bar"); equals( x.className, "hi foo bar", "Check more added classes" ); - + jq.removeClass(); equals( x.className, "", "Remove all classes" ); - + jq.addClass("hi foo bar"); jq.removeClass("foo"); equals( x.className, "hi bar", "Check removal of one class" ); - + ok( jq.hasClass("hi"), "Check has1" ); ok( jq.hasClass("bar"), "Check has2" ); + + var jq = jQuery("

"); + ok( jq.hasClass("class1"), "Check hasClass with carriage return" ); + ok( jq.is(".class1"), "Check is with carriage return" ); + ok( jq.hasClass("class2"), "Check hasClass with tab" ); + ok( jq.is(".class2"), "Check is with tab" ); + ok( jq.hasClass("cla.ss3"), "Check hasClass with dot" ); + + jq.removeClass("class2"); + ok( jq.hasClass("class2")==false, "Check the class has been properly removed" ); + jq.removeClass("cla"); + ok( jq.hasClass("cla.ss3"), "Check the dotted class has not been removed" ); + jq.removeClass("cla.ss3"); + ok( jq.hasClass("cla.ss3")==false, "Check the dotted class has been removed" ); });