(t *testing.T)
| 319 | } |
| 320 | |
| 321 | func TestRemoveRoot(t *testing.T) { |
| 322 | doc := Doc2Clone() |
| 323 | doc.Find("html").Remove() |
| 324 | |
| 325 | assertLength(t, doc.Find("html").Nodes, 0) |
| 326 | printSel(t, doc.Selection) |
| 327 | } |
| 328 | |
| 329 | func TestRemoveFiltered(t *testing.T) { |
| 330 | doc := Doc2Clone() |
nothing calls this directly
no test coverage detected
searching dependent graphs…