force path to Path::Tiny so comparisons on win32 still work
Karen Etheridge [Thu, 7 Feb 2013 21:36:52 +0000 (13:36 -0800)]
Changes
t/112_configfile_constructor_arg.t

diff --git a/Changes b/Changes
index 8ec93ad..f52542d 100644 (file)
--- 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
index 2435cfc..d17c2d4 100644 (file)
@@ -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',
     );