(t *testing.T)
| 103 | } |
| 104 | |
| 105 | func TestNotFunctionRollback(t *testing.T) { |
| 106 | sel := Doc().Find(".pvk-content") |
| 107 | sel2 := sel.NotFunction(func(i int, s *Selection) bool { |
| 108 | return i > 0 |
| 109 | }).End() |
| 110 | assertEqual(t, sel, sel2) |
| 111 | } |
| 112 | |
| 113 | func TestNotNode(t *testing.T) { |
| 114 | sel := Doc().Find(".pvk-content") |
nothing calls this directly
no test coverage detected