(t *testing.T)
| 1900 | } |
| 1901 | |
| 1902 | func TestMobClean(t *testing.T) { |
| 1903 | _, configuration := setup(t) |
| 1904 | |
| 1905 | setWorkingDir(tempDir + "/alice") |
| 1906 | start(configuration) |
| 1907 | createFile(t, "file1.txt", "abc") |
| 1908 | next(configuration) |
| 1909 | |
| 1910 | setWorkingDir(tempDir + "/bob") |
| 1911 | start(configuration) |
| 1912 | createFile(t, "file2.txt", "def") |
| 1913 | next(configuration) |
| 1914 | |
| 1915 | setWorkingDir(tempDir + "/alice") |
| 1916 | start(configuration) |
| 1917 | createFile(t, "file3.txt", "ghi") |
| 1918 | done(configuration) |
| 1919 | |
| 1920 | setWorkingDir(tempDir + "/bob") |
| 1921 | clean(configuration) |
| 1922 | |
| 1923 | assertNoMobSessionBranches(t, configuration, "mob-session") |
| 1924 | } |
| 1925 | |
| 1926 | func TestMobStartOnWipBranchWithoutCheckedOutBaseBranchWithoutHyphens(t *testing.T) { |
| 1927 | output, configuration := setup(t) |
nothing calls this directly
no test coverage detected