MouseX-Getopt

 view release on metacpan or  search on metacpan

t/010_dashes.t  view on Meta::CPAN

#!/usr/bin/perl

use strict;
use warnings;

use Test::More tests => 5;

use Test::Exception;


BEGIN {
    use_ok('MouseX::Getopt');
}

{
    package App;
    use Mouse;

    with 'MouseX::Getopt::Dashes';

    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/);
    lives_and { is( App->new_with_options->some_thingy, 'bar') } 'Dash in option name';
}

{
    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/;
}



( run in 1.152 second using v1.01-cache-2.11-cpan-302cb4679cc )