(t *testing.T)
| 48 | } |
| 49 | |
| 50 | func TestAddNodes(t *testing.T) { |
| 51 | sel := Doc().Find("div.pvk-gutter") |
| 52 | sel2 := Doc().Find(".pvk-content") |
| 53 | sel = sel.AddNodes(sel2.Nodes...) |
| 54 | assertLength(t, sel.Nodes, 9) |
| 55 | } |
| 56 | |
| 57 | func TestAddNodesNone(t *testing.T) { |
| 58 | sel := Doc().Find("div.pvk-gutter").AddNodes() |
nothing calls this directly
no test coverage detected
searching dependent graphs…