add number to filename of new testcase
[gitmo/MooseX-Getopt.git] / t / 010_dashes.t
index 4ec1248..52b7849 100644 (file)
@@ -3,26 +3,27 @@
 use strict;
 use warnings;
 
-use Test::More tests => 3;
+use Test::More tests => 5;
 
 use Test::Exception;
 
 
 BEGIN {
-       use_ok('MooseX::Getopt');
+    use_ok('MooseX::Getopt');
 }
 
 {
-       package App;
-       use Moose;
+    package App;
+    use Moose;
 
-       with 'MooseX::Getopt::Dashes';
+    with 'MooseX::Getopt::Dashes';
 
-       has 'some_thingy' => ( is => 'ro', isa => 'Str', default => 'foo' );
+    has 'some_thingy' => ( is => 'ro', isa => 'Str', default => 'foo' );
+    has 'another_thingy'   => ( is => 'ro', isa => 'Str', default => 'foo', cmd_flag => 'another_thingy', traits => [ 'Getopt' ], );
 }
 
 {
-       local @ARGV = (qw/--some-thingy bar/);
+    local @ARGV = (qw/--some-thingy bar/);
     lives_and { is( App->new_with_options->some_thingy, 'bar') } 'Dash in option name';
 }
 
@@ -30,3 +31,13 @@ BEGIN {
     local @ARGV = (qw/--some_thingy bar/);
     throws_ok { App->new_with_options } qr/Unknown option: some_thingy/;
 }
+
+{
+    local @ARGV = (qw/--another_thingy bar/);
+    lives_and { is( App->new_with_options->another_thingy, 'bar' ) } 'Underscore in option name';
+}
+
+{
+    local @ARGV = (qw/--another-thingy bar/);
+    throws_ok { App->new_with_options } qr/Unknown option: another-thingy/;
+}