createGitProject creates a git project structure with mandatory attributes set
(numRemotes int)
| 135 | |
| 136 | // createGitProject creates a git project structure with mandatory attributes set |
| 137 | func createGitProject(numRemotes int) *schema.GitProjectSource { |
| 138 | project := schema.GitProjectSource{} |
| 139 | project.Remotes = getRemotes(numRemotes) |
| 140 | return &project |
| 141 | } |
| 142 | |
| 143 | // createZipProject creates a zip project structure |
| 144 | func createZipProject() *schema.ZipProjectSource { |
no test coverage detected