reproduces #117
(t *testing.T)
| 383 | |
| 384 | // reproduces #117 |
| 385 | func TestStartNextWithBranchContainingHyphen(t *testing.T) { |
| 386 | _, configuration := setup(t) |
| 387 | configuration.WipBranchQualifier = "test-branch" |
| 388 | start(configuration) |
| 389 | assertOnBranch(t, "mob/master-test-branch") |
| 390 | assertMobSessionBranches(t, configuration, "mob/master-test-branch") |
| 391 | |
| 392 | configuration.WipBranchQualifier = "" |
| 393 | next(configuration) |
| 394 | } |
| 395 | |
| 396 | func TestStartWithPushDefaultTracking(t *testing.T) { |
| 397 | _, configuration := setup(t) |
nothing calls this directly
no test coverage detected