(t *testing.T)
| 471 | } |
| 472 | |
| 473 | func TestResetDeleteRemoteWipBranchCommitBranch(t *testing.T) { |
| 474 | _, configuration := setup(t) |
| 475 | configuration.WipBranchQualifier = "green" |
| 476 | configuration.ResetDeleteRemoteWipBranch = true |
| 477 | start(configuration) |
| 478 | createFile(t, "example.txt", "contentIrrelevant") |
| 479 | next(configuration) |
| 480 | assertMobSessionBranches(t, configuration, "mob/master-green") |
| 481 | |
| 482 | reset(configuration) |
| 483 | |
| 484 | assertOnBranch(t, "master") |
| 485 | assertNoMobSessionBranches(t, configuration, "mob/master-green") |
| 486 | } |
| 487 | |
| 488 | func TestClean(t *testing.T) { |
| 489 | _, configuration := setup(t) |
nothing calls this directly
no test coverage detected