(t *testing.T)
| 1109 | } |
| 1110 | |
| 1111 | func TestFuzzyModel(t *testing.T) { |
| 1112 | t.Parallel() |
| 1113 | |
| 1114 | NewExecutorTest(t, |
| 1115 | WithName("fuzzy"), |
| 1116 | WithExecutorOptions( |
| 1117 | task.WithDir("testdata/fuzzy"), |
| 1118 | ), |
| 1119 | WithTask("instal"), |
| 1120 | WithRunError(), |
| 1121 | ) |
| 1122 | |
| 1123 | NewExecutorTest(t, |
| 1124 | WithName("not-fuzzy"), |
| 1125 | WithExecutorOptions( |
| 1126 | task.WithDir("testdata/fuzzy"), |
| 1127 | ), |
| 1128 | WithTask("install"), |
| 1129 | ) |
| 1130 | |
| 1131 | NewExecutorTest(t, |
| 1132 | WithName("intern"), |
| 1133 | WithExecutorOptions( |
| 1134 | task.WithDir("testdata/fuzzy"), |
| 1135 | ), |
| 1136 | WithTask("intern"), |
| 1137 | WithRunError(), |
| 1138 | ) |
| 1139 | } |
| 1140 | |
| 1141 | func TestIncludeChecksum(t *testing.T) { |
| 1142 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…