(t *testing.T)
| 975 | } |
| 976 | |
| 977 | func TestRunOutput(t *testing.T) { |
| 978 | _, configuration := setup(t) |
| 979 | |
| 980 | setWorkingDir(tempDir + "/local") |
| 981 | start(configuration) |
| 982 | createFile(t, "file1.txt", "asdf") |
| 983 | output := readFile(t, filepath.Join(tempDir, "local", "file1.txt")) |
| 984 | assertOutputContains(t, &output, "asdf") |
| 985 | } |
| 986 | |
| 987 | func TestTestbed(t *testing.T) { |
| 988 | _, configuration := setup(t) |
nothing calls this directly
no test coverage detected