(t *testing.T)
| 293 | } |
| 294 | |
| 295 | func (f *Fs) InternalTestMetadata(t *testing.T) { |
| 296 | // 1 kB regular file |
| 297 | f.internalTestMetadata(t, "1kiB", "", "") |
| 298 | |
| 299 | // 10 MiB large file |
| 300 | f.internalTestMetadata(t, "10MiB", "6MiB", "6MiB") |
| 301 | } |
| 302 | |
| 303 | func sha1Sum(t *testing.T, s string) string { |
| 304 | hash := sha1.Sum([]byte(s)) |
nothing calls this directly
no test coverage detected