X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-Getopt.git;a=blobdiff_plain;f=t%2F008_configfromfile.t;h=92e083ba0f2be992697f8ed84c8c8e4e6ac81231;hp=39798a2b027481754f6ad37311955e5781e7a0c9;hb=25eb430dc9dc0e223b0a8cddf555e0dc3bbd26aa;hpb=aec092482d5b90b8279e4a5f92165868a78ddf32 diff --git a/t/008_configfromfile.t b/t/008_configfromfile.t index 39798a2..92e083b 100644 --- a/t/008_configfromfile.t +++ b/t/008_configfromfile.t @@ -5,9 +5,9 @@ use Test::Requires 'MooseX::ConfigFromFile'; # skip all if not installed use Test::More tests => 56; use Test::Fatal; use Test::Deep '!blessed'; -use Path::Tiny; +use Path::Tiny 0.009; use Scalar::Util 'blessed'; -use Test::NoWarnings 1.04 ':early'; +use Test::Warnings; my %constructor_args; { @@ -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(