(t *testing.T)
| 394 | } |
| 395 | |
| 396 | func TestStartWithPushDefaultTracking(t *testing.T) { |
| 397 | _, configuration := setup(t) |
| 398 | createFileAndCommitIt(t, "example.txt", "asdf", "asdf") |
| 399 | git("push", "origin", "master") |
| 400 | git("config", "push.default", "tracking") |
| 401 | |
| 402 | start(configuration) |
| 403 | assertMobSessionBranches(t, configuration, "mob-session") |
| 404 | } |
| 405 | |
| 406 | func TestStartWithJoiningNonExistingSession(t *testing.T) { |
| 407 | _, configuration := setup(t) |
nothing calls this directly
no test coverage detected