(t *testing.T)
| 15 | } |
| 16 | |
| 17 | func TestExtractImageURLsDelegates(t *testing.T) { |
| 18 | urls := extractImageURLs(`<img src="test.png">`) |
| 19 | if len(urls) != 1 || urls[0] != "test.png" { |
| 20 | t.Errorf("extractImageURLs = %v, want [test.png]", urls) |
| 21 | } |
| 22 | } |
nothing calls this directly
no test coverage detected