(t *testing.T)
| 486 | } |
| 487 | |
| 488 | func TestClean(t *testing.T) { |
| 489 | _, configuration := setup(t) |
| 490 | git("checkout", "-b", "mob-session") |
| 491 | |
| 492 | clean(configuration) |
| 493 | |
| 494 | assertOnBranch(t, "master") |
| 495 | assertNoLocalBranch(t, "mob-session") |
| 496 | } |
| 497 | |
| 498 | func TestCleanAfterStart(t *testing.T) { |
| 499 | _, configuration := setup(t) |
nothing calls this directly
no test coverage detected