(t *testing.T)
| 205 | } |
| 206 | |
| 207 | func TestIndexSelectorInvalid(t *testing.T) { |
| 208 | sel := Doc().Find(".hero-unit") |
| 209 | if i := sel.IndexSelector(""); i != -1 { |
| 210 | t.Errorf("Expected index of -1, got %v.", i) |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | func TestIndexOfNode(t *testing.T) { |
| 215 | sel := Doc().Find("div.pvk-gutter") |
nothing calls this directly
no test coverage detected