perform all path comparisons unix-style, to avoid win32 issues
[gitmo/MooseX-Getopt.git] / t / 008_configfromfile.t
index 39798a2..ed742e2 100644 (file)
@@ -114,7 +114,7 @@ my %constructor_args;
         ok(  !$app->config_from_override,
             '... config_from_override false as expected' );
 
-        is( $app->configfile, path('/notused/default'),
+        is( path($app->configfile), path('/notused/default'),
             '... configfile is /notused/default as expected' );
 
         cmp_deeply(
@@ -134,7 +134,7 @@ my %constructor_args;
         ok(  !$app->config_from_override,
             '... config_from_override false as expected' );
 
-        is( $app->configfile, path('/notused/default'),
+        is( path($app->configfile), path('/notused/default'),
             '... configfile is /notused/default as expected' );
 
         cmp_deeply(
@@ -189,7 +189,7 @@ my %constructor_args;
         ok( $app->config_from_override,
              '... config_from_override true as expected' );
 
-        is( $app->configfile, path('/notused/override'),
+        is( path($app->configfile), path('/notused/override'),
             '... configfile is /notused/override as expected' );
 
         cmp_deeply(
@@ -208,7 +208,7 @@ my %constructor_args;
         ok( $app->config_from_override,
              '... config_from_override true as expected' );
 
-        is( $app->configfile, path('/notused/override'),
+        is( path($app->configfile), path('/notused/override'),
             '... configfile is /notused/override as expected' );
 
         cmp_deeply(
@@ -227,7 +227,7 @@ my %constructor_args;
         ok( $app->config_from_override,
              '... config_from_override true as expected' );
 
-        is( $app->configfile, path('/notused/override'),
+        is( path($app->configfile), path('/notused/override'),
             '... configfile is /notused as expected' );
 
         cmp_deeply(