(t *testing.T)
| 253 | } |
| 254 | |
| 255 | func TestInternalObjNotFound(t *testing.T) { |
| 256 | id := fmt.Sprintf("tionf%v", time.Now().Unix()) |
| 257 | rootFs, _ := runInstance.newCacheFs(t, remoteName, id, false, true, nil) |
| 258 | |
| 259 | obj, err := rootFs.NewObject(context.Background(), "404") |
| 260 | require.Error(t, err) |
| 261 | require.Nil(t, obj) |
| 262 | } |
| 263 | |
| 264 | func TestInternalCachedWrittenContentMatches(t *testing.T) { |
| 265 | testy.SkipUnreliable(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…