(t *testing.T)
| 1565 | } |
| 1566 | |
| 1567 | func TestStartNextPushManualCommits(t *testing.T) { |
| 1568 | _, configuration := setup(t) |
| 1569 | |
| 1570 | setWorkingDir(tempDir + "/local") |
| 1571 | |
| 1572 | start(configuration) |
| 1573 | createFileAndCommitIt(t, "example.txt", "contentIrrelevant", "asdf") |
| 1574 | next(configuration) |
| 1575 | |
| 1576 | setWorkingDir(tempDir + "/localother") |
| 1577 | start(configuration) |
| 1578 | assertFileExist(t, "example.txt") |
| 1579 | } |
| 1580 | |
| 1581 | func TestStartBranchWithUncommitedChangesFixWithBranch(t *testing.T) { |
| 1582 | output, _ := setup(t) |
nothing calls this directly
no test coverage detected