]> 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:46:25 +0000 (17:46 +0400)
test/unit/selector.js

index e5e3185ae5d5e6791f03671e03a35e2204262532..6236b5d6dc495a45200c29c32dc2d441e53d11d3 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 );