(t *testing.T)
| 647 | } |
| 648 | |
| 649 | func TestPrevFilteredUntilSelectionRollback(t *testing.T) { |
| 650 | sel := Doc2().Find(".even") |
| 651 | sel2 := Doc2().Find(".five") |
| 652 | sel3 := sel.PrevFilteredUntilSelection(".even", sel2).End() |
| 653 | assertEqual(t, sel, sel3) |
| 654 | } |
| 655 | |
| 656 | func TestPrevFilteredUntilNodes(t *testing.T) { |
| 657 | sel := Doc2().Find(".even") |
nothing calls this directly
no test coverage detected
searching dependent graphs…