(t *testing.T)
| 62 | } |
| 63 | |
| 64 | func TestIsSelectionNot(t *testing.T) { |
| 65 | sel := Doc().Find("div") |
| 66 | sel2 := Doc().Find("a") |
| 67 | |
| 68 | if sel.IsSelection(sel2) { |
| 69 | t.Error("Expected some div NOT to be an anchor.") |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | func TestIsNodes(t *testing.T) { |
| 74 | sel := Doc().Find("div") |
nothing calls this directly
no test coverage detected
searching dependent graphs…