(t *testing.T)
| 25 | } |
| 26 | |
| 27 | func TestInitProjectRelative(t *testing.T) { |
| 28 | target := filepath.Join(testDir, "relativeTest") |
| 29 | defer os.RemoveAll(target) |
| 30 | |
| 31 | proj, err := InitProject(target) |
| 32 | assert.NoError(t, err) |
| 33 | assert.NotNil(t, proj) |
| 34 | |
| 35 | checkProject(t, proj.Path) |
| 36 | } |
| 37 | |
| 38 | func TestInitProjectAbsolute(t *testing.T) { |
| 39 | target := filepath.Join(testDir, "absoluteTest") |
nothing calls this directly
no test coverage detected