]> source.dussan.org Git - jquery.git/commitdiff
Tests: Add test for selectors with commas
authorOleg Gaidarenko <markelog@gmail.com>
Wed, 26 Feb 2014 23:13:26 +0000 (03:13 +0400)
committerOleg Gaidarenko <markelog@gmail.com>
Tue, 15 Apr 2014 13:45:59 +0000 (17:45 +0400)
test/unit/selector.js

index 54ee241b9ea0c26ffb69911aa320feb42a105078..14d81b79c2ae57c800206a5c00b5c85375e44d18 100644 (file)
@@ -89,6 +89,18 @@ test("name", function() {
        form.remove();
 });
 
+test( "comma selectors", function() {
+       expect( 4 );
+
+       var fixture = jQuery( "<div><h2><span/></h2><div><p><span/></p><p/></div></div>" );
+
+       equal( fixture.find( "h2, div p" ).filter( "p" ).length, 2, "has to find two <p>" );
+       equal( fixture.find( "h2, div p" ).filter( "h2" ).length, 1, "has to find one <h2>" );
+       equal( fixture.find( "h2 , div p" ).filter( "p" ).length, 2, "has to find two <p>" );
+       equal( fixture.find( "h2 , div p" ).filter( "h2" ).length, 1, "has to find one <h2>" );
+});
+
+
 test("attributes - jQuery only", function() {
        expect( 5 );