(t *testing.T, srv *dagql.Server, op string)
| 329 | } |
| 330 | |
| 331 | func cacheVolumeTestDirectoryResult(t *testing.T, srv *dagql.Server, op string) dagql.ObjectResult[*Directory] { |
| 332 | t.Helper() |
| 333 | res, err := dagql.NewObjectResultForCall(&Directory{}, srv, &dagql.ResultCall{ |
| 334 | Kind: dagql.ResultCallKindSynthetic, |
| 335 | SyntheticOp: op, |
| 336 | Type: dagql.NewResultCallType((&Directory{}).Type()), |
| 337 | }) |
| 338 | require.NoError(t, err) |
| 339 | return res |
| 340 | } |
| 341 | |
| 342 | func TestCacheVolumeUsageIdentityUsesLiveSnapshotID(t *testing.T) { |
| 343 | t.Parallel() |
no test coverage detected