(t *testing.T)
| 29 | } |
| 30 | |
| 31 | func TestBuildAgentCache_inMemory(t *testing.T) { |
| 32 | t.Parallel() |
| 33 | c, err := buildAgentCache("agent", &latest.CacheConfig{Enabled: true}, t.TempDir()) |
| 34 | require.NoError(t, err) |
| 35 | require.NotNil(t, c) |
| 36 | } |
| 37 | |
| 38 | func TestBuildAgentCache_relativePath(t *testing.T) { |
| 39 | t.Parallel() |
nothing calls this directly
no test coverage detected