(t *testing.T)
| 568 | } |
| 569 | |
| 570 | func TestStartDiscardUnstagedChanges(t *testing.T) { |
| 571 | _, configuration := setup(t) |
| 572 | configuration.HandleUncommittedChanges = config.DiscardChanges |
| 573 | createFile(t, "test.txt", "contentIrrelevant") |
| 574 | |
| 575 | start(configuration) |
| 576 | |
| 577 | assertOnBranch(t, "mob-session") |
| 578 | assertMobSessionBranches(t, configuration, "mob-session") |
| 579 | assertCleanGitStatus(t) |
| 580 | } |
| 581 | |
| 582 | func TestStartIncludeUnstagedChangesInNewWorkingDirectory(t *testing.T) { |
| 583 | output, configuration := setup(t) |
nothing calls this directly
no test coverage detected