(existingBranches []string)
| 204 | } |
| 205 | |
| 206 | func (branch Branch) exists(existingBranches []string) bool { |
| 207 | return stringContains(existingBranches, branch.Name) |
| 208 | } |
| 209 | |
| 210 | func (branch Branch) hasWipBranchQualifierSeparator(configuration config.Configuration) bool { //TODO improve (dont use strings.Contains, add tests) |
| 211 | return strings.Contains(branch.Name, configuration.WipBranchQualifierSeparator) |
no test coverage detected