github.com/keltia/go-ipfs@v0.3.8-0.20150909044612-210793031c63/util/file_test.go (about)

     1  package util
     2  
     3  import "testing"
     4  
     5  func TestFileDoesNotExist(t *testing.T) {
     6  	t.Parallel()
     7  	if FileExists("i would be surprised to discover that this file exists") {
     8  		t.Fail()
     9  	}
    10  }