micro/util/file/file_test.go
2019-05-30 23:52:10 +01:00

18 lines
185 B
Go

package file
import (
"testing"
)
func TestExists(t *testing.T) {
ok, err := Exists("/")
if ok {
return
}
if !ok || err != nil {
t.Fatalf("Test Exists fail, %s", err)
}
}