X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=test%2Funit%2Fattributes.js;h=9f0da1fd77d40cf476402c33a304c1891a562a62;hb=649024909d376032e6e9c41f209182d584e51043;hp=6b18f99d06cac628a2496e89889b3919c7f2d9b2;hpb=1a4d1904ae8631f94b7400d99af24d3fe2f33ecd;p=jquery.git diff --git a/test/unit/attributes.js b/test/unit/attributes.js index 6b18f99..9f0da1f 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -184,7 +184,7 @@ test("attr(String, Object)", function() { }); test("attr(jquery_method)", function(){ - expect(10); + expect(8); var $elem = jQuery("
"), elem = $elem[0]; @@ -199,21 +199,12 @@ test("attr(jquery_method)", function(){ $elem.attr('addClass', 'css'); equals( elem.className, 'css', 'attr(addClass)'); - $elem.attr('removeClass', 'css'); - equals( jQuery.trim(elem.className), '', 'attr(removeClass)'); - $elem.attr('css', {color:'red'}); ok( /^(#ff0000|red)$/i.test(elem.style.color), 'attr(css)'); $elem.attr('height', 10); equals( elem.style.height, '10px', 'attr(height)'); - $elem.attr('each', function(){ - return function(){ - ok(true, 'attr(each)'); - }; - }); - // Multiple attributes $elem.attr({ @@ -436,23 +427,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" ); });