From: Karen Etheridge Date: Thu, 7 Feb 2013 21:36:52 +0000 (-0800) Subject: force path to Path::Tiny so comparisons on win32 still work X-Git-Tag: v0.54~11 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5316a918b3c01d22c2fb93501d35c77e412dd9bb;p=gitmo%2FMooseX-Getopt.git force path to Path::Tiny so comparisons on win32 still work --- diff --git a/Changes b/Changes index 8ec93ad..f52542d 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,7 @@ Revision history for Perl extension MooseX-Getopt {{$NEXT}} + - fix broken tests on win32 with file comparisons 0.53 2013-02-05 09:59:00 PST-0800 - properly indicate optional dependency in tests using diff --git a/t/112_configfile_constructor_arg.t b/t/112_configfile_constructor_arg.t index 2435cfc..d17c2d4 100644 --- a/t/112_configfile_constructor_arg.t +++ b/t/112_configfile_constructor_arg.t @@ -31,7 +31,7 @@ $Config::Any::YAML::NO_YAML_XS_WARNING = 1; my $obj = Foo->new_with_options(configfile => $configfile); is( - $obj->configfile, + path($obj->configfile), $configfile, 'configfile value is used from the constructor', );