mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-10 14:34:24 +08:00
11 lines
179 B
Go
11 lines
179 B
Go
package util
|
|
|
|
import "testing"
|
|
|
|
func TestFileDoesNotExist(t *testing.T) {
|
|
t.Parallel()
|
|
if FileExists("i would be surprised to discover that this file exists") {
|
|
t.Fail()
|
|
}
|
|
}
|