(t *testing.T)
| 306 | } |
| 307 | |
| 308 | func TestURLSource_Read_ConnectionError(t *testing.T) { |
| 309 | t.Parallel() |
| 310 | |
| 311 | _, err := newURLSourceForTest("http://invalid.invalid/config.yaml", nil).Read(t.Context()) |
| 312 | require.Error(t, err) |
| 313 | } |
| 314 | |
| 315 | func TestURLSource_Read_CachesContent(t *testing.T) { |
| 316 | t.Parallel() |
nothing calls this directly
no test coverage detected