(t *testing.T)
| 77 | } |
| 78 | |
| 79 | func TestLogFileFailOnRelativePath(t *testing.T) { |
| 80 | _, err := LogFile("./file.txt")("!") |
| 81 | assert.Error(t, err, "absolute path needed") |
| 82 | } |
| 83 | |
| 84 | type LogURIGeneratorTestCase struct { |
| 85 | // Arbitrary scheme string (e.g. "binary") |