(t *testing.T)
| 147 | } |
| 148 | |
| 149 | func TestDevStore_PackageDirNotExist(t *testing.T) { |
| 150 | cache := newTestDevArtifactCache(t) |
| 151 | err := cache.Store(filepath.Join(t.TempDir(), "does-not-exist"), "meta") |
| 152 | if err == nil { |
| 153 | t.Fatal("expected error when packageDir doesn't exist") |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | func TestDevStore_InvalidNameVersion(t *testing.T) { |
| 158 | cache := newTestDevArtifactCache(t) |
nothing calls this directly
no test coverage detected