Navigation Menu

Skip to content

Commit

Permalink
Added test for both siblings() and siblings(String) to verify bug #168
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Sep 9, 2006
1 parent da74bde commit a4f25f9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/jquery/jquery.js
Expand Up @@ -2916,6 +2916,8 @@ jQuery.macros = {
* @before <p>Hello</p><div><span>Hello Again</span></div><p>And Again</p>
* @result [ <p>Hello</p>, <p>And Again</p> ]
*
* @test isSet( $("#en").siblings().get(), q("sndp", "sap"), "Check for siblings" );
*
* @name siblings
* @type jQuery
* @cat DOM/Traversing
Expand All @@ -2929,6 +2931,9 @@ jQuery.macros = {
* @before <div><span>Hello</span></div><p class="selected">Hello Again</p><p>And Again</p>
* @result [ <p class="selected">Hello Again</p> ]
*
* @test isSet( $("#sndp").siblings("[code]").get(), q("sap"), "Check for filtered siblings (has code child element)" );
* @test isSet( $("#sndp").siblings("[a]").get(), q("en", "sap"), "Check for filtered siblings (has anchor child element)" );
*
* @name siblings
* @type jQuery
* @param String expr An expression to filter the sibling Elements with
Expand Down

0 comments on commit a4f25f9

Please sign in to comment.