Test parseEnvFile for a non existent file
(t *testing.T)
| 19 | |
| 20 | // Test parseEnvFile for a non existent file |
| 21 | func TestParseEnvFileNonExistentFile(t *testing.T) { |
| 22 | _, err := parseEnvFile("no_such_file") |
| 23 | assert.Check(t, is.ErrorType(err, os.IsNotExist)) |
| 24 | } |
| 25 | |
| 26 | // parseEnvFile with environment variable import definitions |
| 27 | func TestParseEnvVariableDefinitionsFile(t *testing.T) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…