@@ -152,7 +152,9 @@ func TestAllowMissingFormatter(t *testing.T) {
152
152
as := require .New (t )
153
153
154
154
tempDir := test .TempExamples (t )
155
- configPath := tempDir + "/treefmt.toml"
155
+ configPath := filepath .Join (tempDir , "treefmt.toml" )
156
+
157
+ test .ChangeWorkDir (t , tempDir )
156
158
157
159
test .WriteConfig (t , configPath , & config.Config {
158
160
FormatterConfigs : map [string ]* config.Formatter {
@@ -162,15 +164,21 @@ func TestAllowMissingFormatter(t *testing.T) {
162
164
},
163
165
})
164
166
165
- _ , _ , err := treefmt (t , "--config-file" , configPath , "--tree-root" , tempDir , "-vv" )
166
- as .ErrorIs (err , format .ErrCommandNotFound )
167
+ // default
168
+ treefmt2 (t , args (), func (_ []byte , _ * stats.Stats , err error ) {
169
+ as .ErrorIs (err , format .ErrCommandNotFound )
170
+ })
167
171
168
- _ , _ , err = treefmt (t , "--config-file" , configPath , "--tree-root" , tempDir , "--allow-missing-formatter" )
169
- as .NoError (err )
172
+ // arg
173
+ treefmt2 (t , args ("--allow-missing-formatter" ), func (_ []byte , _ * stats.Stats , err error ) {
174
+ as .NoError (err )
175
+ })
170
176
177
+ // env
171
178
t .Setenv ("TREEFMT_ALLOW_MISSING_FORMATTER" , "true" )
172
- _ , _ , err = treefmt (t , "--config-file" , configPath , "--tree-root" , tempDir )
173
- as .NoError (err )
179
+ treefmt2 (t , args (), func (_ []byte , _ * stats.Stats , err error ) {
180
+ as .NoError (err )
181
+ })
174
182
}
175
183
176
184
func TestSpecifyingFormatters (t * testing.T ) {
0 commit comments