(t *testing.T)
| 150 | } |
| 151 | |
| 152 | func TestPluginFiles_Open_BackslashPath(t *testing.T) { |
| 153 | p := newTestPlugin(t) |
| 154 | |
| 155 | nativePath := filepath.Join("items", "test-sword.yaml") |
| 156 | f, err := p.files.Open(nativePath) |
| 157 | require.NoError(t, err) |
| 158 | f.Close() |
| 159 | } |
| 160 | |
| 161 | // --------------------------------------------------------------------------- |
| 162 | // PluginFiles.Stat |
nothing calls this directly
no test coverage detected