(t *testing.T)
| 172 | } |
| 173 | |
| 174 | func TestPluginFiles_Stat_NotFound(t *testing.T) { |
| 175 | p := newTestPlugin(t) |
| 176 | |
| 177 | _, err := p.files.Stat("ghost/file.txt") |
| 178 | assert.True(t, errors.Is(err, fs.ErrNotExist)) |
| 179 | } |
| 180 | |
| 181 | func TestPluginFiles_Stat_BackslashPath(t *testing.T) { |
| 182 | p := newTestPlugin(t) |
nothing calls this directly
no test coverage detected