(t *testing.T)
| 1977 | } |
| 1978 | |
| 1979 | func TestMobConfigWorksOutsideOfGitRepository(t *testing.T) { |
| 1980 | output := captureOutput(t) |
| 1981 | runMob(t, t.TempDir(), "config") |
| 1982 | |
| 1983 | assertOutputNotContains(t, output, "ERROR") |
| 1984 | assertOutputContains(t, output, "MOB_CLI_NAME=\"mob\"") |
| 1985 | } |
| 1986 | |
| 1987 | func TestMobHelpWorksOutsideOfGitRepository(t *testing.T) { |
| 1988 | output := captureOutput(t) |
nothing calls this directly
no test coverage detected