(t *testing.T)
| 36 | } |
| 37 | |
| 38 | func TestReadURLsFromInput_NonExistentFile(t *testing.T) { |
| 39 | // A non-URL, non-file input should be returned as-is |
| 40 | urls := readURLsFromInput("not-a-url-or-file") |
| 41 | if len(urls) != 1 || urls[0] != "not-a-url-or-file" { |
| 42 | t.Fatalf("expected input returned as-is, got: %v", urls) |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | func TestOutputWriter_PlainText(t *testing.T) { |
| 47 | dir := t.TempDir() |
nothing calls this directly
no test coverage detected