(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestProjectPath(t *testing.T) { |
| 12 | _, err := os.Stat(path.Join(GetProjectDir(), "./README.md")) |
| 13 | assert.Nil(t, err) |
| 14 | } |
| 15 | |
| 16 | func TestWithWd(t *testing.T) { |
| 17 | wd1, _ := os.Getwd() |
nothing calls this directly
no test coverage detected
searching dependent graphs…