(t *testing.T)
| 96 | } |
| 97 | |
| 98 | func TestNotFunction(t *testing.T) { |
| 99 | sel := Doc().Find(".pvk-content").NotFunction(func(i int, s *Selection) bool { |
| 100 | return i > 0 |
| 101 | }) |
| 102 | assertLength(t, sel.Nodes, 1) |
| 103 | } |
| 104 | |
| 105 | func TestNotFunctionRollback(t *testing.T) { |
| 106 | sel := Doc().Find(".pvk-content") |
nothing calls this directly
no test coverage detected
searching dependent graphs…