TestIntegration runs integration tests against the remote
(t *testing.T)
| 14 | |
| 15 | // TestIntegration runs integration tests against the remote |
| 16 | func TestIntegration(t *testing.T) { |
| 17 | fstests.Run(t, &fstests.Opt{ |
| 18 | RemoteName: "TestCache:", |
| 19 | NilObject: (*cache.Object)(nil), |
| 20 | UnimplementableFsMethods: []string{"PublicLink", "OpenWriterAt", "OpenChunkWriter", "DirSetModTime", "MkdirMetadata", "ListP"}, |
| 21 | UnimplementableObjectMethods: []string{"MimeType", "ID", "GetTier", "SetTier", "Metadata", "SetMetadata"}, |
| 22 | UnimplementableDirectoryMethods: []string{"Metadata", "SetMetadata", "SetModTime"}, |
| 23 | SkipInvalidUTF8: true, // invalid UTF-8 confuses the cache |
| 24 | }) |
| 25 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…