(t *testing.T)
| 534 | } |
| 535 | |
| 536 | func TestCleanMissingBaseBranch(t *testing.T) { |
| 537 | _, configuration := setup(t) |
| 538 | git("checkout", "-b", "mob/feature1") |
| 539 | |
| 540 | clean(configuration) |
| 541 | |
| 542 | assertOnBranch(t, "master") |
| 543 | assertNoLocalBranch(t, "mob/feature1") |
| 544 | } |
| 545 | |
| 546 | func TestStartUnstagedChanges(t *testing.T) { |
| 547 | output, configuration := setup(t) |
nothing calls this directly
no test coverage detected