(t *testing.T, path string, expected string)
| 222 | } |
| 223 | |
| 224 | func assertFileContent(t *testing.T, path string, expected string) { |
| 225 | t.Helper() |
| 226 | content, err := os.ReadFile(path) |
| 227 | require.NoError(t, err) |
| 228 | require.Equal(t, expected, string(content)) |
| 229 | } |
| 230 | |
| 231 | func emptyEnv(string) string { return "" } |
| 232 |
no test coverage detected