(t *testing.T)
| 2026 | } |
| 2027 | |
| 2028 | func TestDotenvHasLocalEnvInPath(t *testing.T) { |
| 2029 | t.Parallel() |
| 2030 | |
| 2031 | tt := fileContentTest{ |
| 2032 | Dir: "testdata/dotenv/local_env_in_path", |
| 2033 | Target: "default", |
| 2034 | TrimSpace: false, |
| 2035 | Files: map[string]string{ |
| 2036 | "var.txt": "VAR='var_in_dot_env_1'\n", |
| 2037 | }, |
| 2038 | } |
| 2039 | t.Run("", func(t *testing.T) { |
| 2040 | t.Parallel() |
| 2041 | tt.Run(t) |
| 2042 | }) |
| 2043 | } |
| 2044 | |
| 2045 | func TestDotenvHasLocalVarInPath(t *testing.T) { |
| 2046 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…