Your IP : 216.73.216.1


Current Path : /usr/share/doc/perl-MooseX-ConfigFromFile/t/
Upload File :
Current File : //usr/share/doc/perl-MooseX-ConfigFromFile/t/04a_getopt.t

use strict;
use warnings;

use Test::More;
use if $ENV{AUTHOR_TESTING}, 'Test::Warnings';

use Test::Without::Module 'MooseX::Getopt';

{
    package Foo::NoOptions;

    use Moose;
    with qw(MooseX::ConfigFromFile);
    sub get_config_from_file { }
}

ok(
    !Foo::NoOptions->meta->find_attribute_by_name('configfile')->does('MooseX::Getopt::Meta::Attribute::Trait'),
    'the Getopt attr trait is not added if not installed',
);

done_testing;