(t *testing.T)
| 1024 | } |
| 1025 | |
| 1026 | func TestStartDoneWithMobDoneSquash(t *testing.T) { |
| 1027 | _, configuration := setup(t) |
| 1028 | configuration.DoneSquash = config.Squash |
| 1029 | |
| 1030 | start(configuration) |
| 1031 | assertOnBranch(t, "mob-session") |
| 1032 | |
| 1033 | done(configuration) |
| 1034 | |
| 1035 | assertOnBranch(t, "master") |
| 1036 | assertNoMobSessionBranches(t, configuration, "mob-session") |
| 1037 | } |
| 1038 | |
| 1039 | func TestStartDoneWithMobDoneSquashWithOldEmptyMobStartCommit(t *testing.T) { |
| 1040 | _, configuration := setup(t) |
nothing calls this directly
no test coverage detected