* MooseX::Getopt::Parser::Descriptive: fixed regression: does not require CLI param...
[gitmo/MooseX-Getopt.git] / t / 004_nogetop.t
index c26006d..e4a1c5a 100644 (file)
@@ -112,7 +112,6 @@ foreach my $parser_name (qw(MooseX::Getopt::Parser::Long MooseX::Getopt::Parser:
             local @ARGV = (qw/--private_stuff 317/);
 
             throws_ok {
-
                 my $parser = $parser_name->new;
                 isa_ok($parser, $parser_name);
 
@@ -120,7 +119,6 @@ foreach my $parser_name (qw(MooseX::Getopt::Parser::Long MooseX::Getopt::Parser:
                 isa_ok($getopt, 'MooseX::Getopt::Session');
 
                 App->new_with_options( getopt => $getopt )
-
             } qr/Unknown option: private_stuff/;
         }