(t *testing.T)
| 1139 | } |
| 1140 | |
| 1141 | func TestIncludeChecksum(t *testing.T) { |
| 1142 | t.Parallel() |
| 1143 | |
| 1144 | NewExecutorTest(t, |
| 1145 | WithName("correct"), |
| 1146 | WithExecutorOptions( |
| 1147 | task.WithDir("testdata/includes_checksum/correct"), |
| 1148 | ), |
| 1149 | ) |
| 1150 | |
| 1151 | NewExecutorTest(t, |
| 1152 | WithName("incorrect"), |
| 1153 | WithExecutorOptions( |
| 1154 | task.WithDir("testdata/includes_checksum/incorrect"), |
| 1155 | ), |
| 1156 | WithSetupError(), |
| 1157 | WithFixtureTemplating(), |
| 1158 | ) |
| 1159 | } |
| 1160 | |
| 1161 | func TestIncludeSilent(t *testing.T) { |
| 1162 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…