(t *testing.T)
| 143 | } |
| 144 | |
| 145 | func TestPluginFiles_Open_NotFound(t *testing.T) { |
| 146 | p := newTestPlugin(t) |
| 147 | |
| 148 | _, err := p.files.Open("no/such/file.txt") |
| 149 | assert.True(t, errors.Is(err, fs.ErrNotExist)) |
| 150 | } |
| 151 | |
| 152 | func TestPluginFiles_Open_BackslashPath(t *testing.T) { |
| 153 | p := newTestPlugin(t) |
nothing calls this directly
no test coverage detected