(t *testing.T)
| 506 | } |
| 507 | |
| 508 | func TestCleanNotFullyMergedMissingRemoteBranch(t *testing.T) { |
| 509 | _, configuration := setup(t) |
| 510 | start(configuration) |
| 511 | |
| 512 | createFile(t, "example.txt", "contentIrrelevant") |
| 513 | |
| 514 | next(configuration) |
| 515 | |
| 516 | git("push", "origin", "mob-session", "--delete") |
| 517 | |
| 518 | clean(configuration) |
| 519 | |
| 520 | assertOnBranch(t, "master") |
| 521 | assertNoLocalBranch(t, "mob-session") |
| 522 | } |
| 523 | |
| 524 | func TestCleanFeatureOrphanWipBranch(t *testing.T) { |
| 525 | _, configuration := setup(t) |
nothing calls this directly
no test coverage detected