(t *testing.T)
| 229 | } |
| 230 | |
| 231 | func TestStartWithOutCISkip(t *testing.T) { |
| 232 | output, configuration := setup(t) |
| 233 | configuration.SkipCiPushOptionEnabled = false |
| 234 | |
| 235 | start(configuration) |
| 236 | |
| 237 | assertOnBranch(t, "mob-session") |
| 238 | assertMobSessionBranches(t, configuration, "mob-session") |
| 239 | assertCommitLogNotContainsMessage(t, "mob-session", configuration.StartCommitMessage) |
| 240 | assertOutputNotContains(t, output, "--push-option ci.skip") |
| 241 | |
| 242 | } |
| 243 | |
| 244 | func TestStartWithMultipleExistingBranches(t *testing.T) { |
| 245 | output, configuration := setup(t) |
nothing calls this directly
no test coverage detected