(t *testing.T)
| 33 | } |
| 34 | |
| 35 | func TestFilterFunctionRollback(t *testing.T) { |
| 36 | sel := Doc().Find(".pvk-content") |
| 37 | sel2 := sel.FilterFunction(func(i int, s *Selection) bool { |
| 38 | return i > 0 |
| 39 | }).End() |
| 40 | assertEqual(t, sel, sel2) |
| 41 | } |
| 42 | |
| 43 | func TestFilterNode(t *testing.T) { |
| 44 | sel := Doc().Find(".pvk-content") |
nothing calls this directly
no test coverage detected
searching dependent graphs…