experimental-cli/project/filesystem_test.go

14 lines
170 B
Go
Raw Normal View History

2020-12-10 13:16:20 +00:00
package main
import (
"testing"
)
func TestPigeonHomeDir(t *testing.T) {
result := pigeonHomeDir()
expected := "./testdata"
if result != expected {
t.Fail()
}
}