File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -266,23 +266,23 @@ public void can_log_to_console()
266
266
public void nofetch_true_when_defined ( )
267
267
{
268
268
var arguments = ArgumentParser . ParseArguments ( "-nofetch" ) ;
269
- arguments . NoFetch = true ;
269
+ arguments . NoFetch . ShouldBe ( true ) ;
270
270
}
271
271
272
272
[ Test ]
273
273
public void other_arguments_can_be_parsed_before_nofetch ( )
274
274
{
275
275
var arguments = ArgumentParser . ParseArguments ( "targetpath -nofetch " ) ;
276
- arguments . TargetPath = "targetpath" ;
277
- arguments . NoFetch = true ;
276
+ arguments . TargetPath . ShouldBe ( "targetpath" ) ;
277
+ arguments . NoFetch . ShouldBe ( true ) ;
278
278
}
279
279
280
280
[ Test ]
281
281
public void other_arguments_can_be_parsed_after_nofetch ( )
282
282
{
283
283
var arguments = ArgumentParser . ParseArguments ( "-nofetch -proj foo.sln" ) ;
284
- arguments . NoFetch = true ;
285
- arguments . Proj = "foo.sln" ;
284
+ arguments . NoFetch . ShouldBe ( true ) ;
285
+ arguments . Proj . ShouldBe ( "foo.sln" ) ;
286
286
}
287
287
288
288
[ Test ]
You can’t perform that action at this time.
0 commit comments