(t *testing.T)
| 2088 | } |
| 2089 | |
| 2090 | func TestTaskDotenv(t *testing.T) { |
| 2091 | t.Parallel() |
| 2092 | |
| 2093 | tt := fileContentTest{ |
| 2094 | Dir: "testdata/dotenv_task/default", |
| 2095 | Target: "dotenv", |
| 2096 | TrimSpace: true, |
| 2097 | Files: map[string]string{ |
| 2098 | "dotenv.txt": "foo", |
| 2099 | }, |
| 2100 | } |
| 2101 | t.Run("", func(t *testing.T) { |
| 2102 | t.Parallel() |
| 2103 | tt.Run(t) |
| 2104 | }) |
| 2105 | } |
| 2106 | |
| 2107 | func TestTaskDotenvFail(t *testing.T) { |
| 2108 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…