(t *testing.T)
| 1835 | } |
| 1836 | |
| 1837 | func TestEmptyGitStatus(t *testing.T) { |
| 1838 | setup(t) |
| 1839 | |
| 1840 | status := gitStatus() |
| 1841 | |
| 1842 | equals(t, 0, len(status)) |
| 1843 | assertCleanGitStatus(t) |
| 1844 | } |
| 1845 | |
| 1846 | func TestGitStatusWithOneFile(t *testing.T) { |
| 1847 | setup(t) |
nothing calls this directly
no test coverage detected