file_test.go 179 Bytes
Newer Older
Jeromy's avatar
Jeromy committed
1
2
3
4
5
6
7
8
9
10
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()
	}
}