(t *testing.T)
| 1844 | } |
| 1845 | |
| 1846 | func TestGitStatusWithOneFile(t *testing.T) { |
| 1847 | setup(t) |
| 1848 | createFile(t, "hello.txt", "contentIrrelevant") |
| 1849 | |
| 1850 | status := gitStatus() |
| 1851 | |
| 1852 | equals(t, GitStatus{ |
| 1853 | "hello.txt": "??", |
| 1854 | }, status) |
| 1855 | } |
| 1856 | |
| 1857 | func TestGitStatusWithManyFiles(t *testing.T) { |
| 1858 | setup(t) |
nothing calls this directly
no test coverage detected