(t *testing.T)
| 2139 | } |
| 2140 | |
| 2141 | func TestTaskDotenvWithVarName(t *testing.T) { |
| 2142 | t.Parallel() |
| 2143 | |
| 2144 | tt := fileContentTest{ |
| 2145 | Dir: "testdata/dotenv_task/default", |
| 2146 | Target: "dotenv-with-var-name", |
| 2147 | TrimSpace: true, |
| 2148 | Files: map[string]string{ |
| 2149 | "dotenv-with-var-name.txt": "foo", |
| 2150 | }, |
| 2151 | } |
| 2152 | t.Run("", func(t *testing.T) { |
| 2153 | t.Parallel() |
| 2154 | tt.Run(t) |
| 2155 | }) |
| 2156 | } |
| 2157 | |
| 2158 | func TestExitImmediately(t *testing.T) { |
| 2159 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…