(t *testing.T)
| 91 | } |
| 92 | |
| 93 | func TestNotNone(t *testing.T) { |
| 94 | sel := Doc().Find(".span12").Not(".zzalert") |
| 95 | assertLength(t, sel.Nodes, 2) |
| 96 | } |
| 97 | |
| 98 | func TestNotFunction(t *testing.T) { |
| 99 | sel := Doc().Find(".pvk-content").NotFunction(func(i int, s *Selection) bool { |
nothing calls this directly
no test coverage detected
searching dependent graphs…