Revision history for Perl extension MooseX-Getopt
{{$NEXT}}
+ - use Path::Class in test to avoid test failures on MSWin32 with filename
+ construction
0.44 2012-05-11 10:44:48 PDT-0700
- now respecting value of configfile passed to the constructor, when used in
# respect the configfile value passed into the constructor.
use Test::More tests => 2;
+use Path::Class; # exports file, dir
{
package Foo;
}
{
- my $configfile = 't/112_configfile_constructor_arg.yml';
+ my $configfile = file(qw(t 112_configfile_constructor_arg.yml))->stringify;
my $obj = Foo->new_with_options(configfile => $configfile);