(t *testing.T)
| 557 | } |
| 558 | |
| 559 | func TestStartIncludeUnstagedChanges(t *testing.T) { |
| 560 | _, configuration := setup(t) |
| 561 | configuration.HandleUncommittedChanges = config.IncludeChanges |
| 562 | createFile(t, "test.txt", "contentIrrelevant") |
| 563 | |
| 564 | start(configuration) |
| 565 | |
| 566 | assertOnBranch(t, "mob-session") |
| 567 | assertMobSessionBranches(t, configuration, "mob-session") |
| 568 | } |
| 569 | |
| 570 | func TestStartDiscardUnstagedChanges(t *testing.T) { |
| 571 | _, configuration := setup(t) |
nothing calls this directly
no test coverage detected