(t *testing.T)
| 327 | } |
| 328 | |
| 329 | func testTempFileSource(t *testing.T) FileSource { |
| 330 | dir := testTempDir(t) |
| 331 | return FileSource(dir) |
| 332 | } |
| 333 | |
| 334 | func testTempDir(t *testing.T) string { |
| 335 | dir, err := ioutil.TempDir("", SpreadTestDir) |
no test coverage detected