(t *testing.T)
| 157 | } |
| 158 | |
| 159 | func TestReadFileForInline_NotFound(t *testing.T) { |
| 160 | t.Parallel() |
| 161 | _, err := ReadFileForInline("/nonexistent/file.txt") |
| 162 | assert.Error(t, err) |
| 163 | } |
| 164 | |
| 165 | func TestDetectMimeType_ContentSniffing(t *testing.T) { |
| 166 | t.Parallel() |
nothing calls this directly
no test coverage detected