Path::Class -> Path::Tiny
[gitmo/MooseX-Getopt.git] / t / 112_configfile_constructor_arg.t
index 8cb1381..2435cfc 100644 (file)
@@ -1,14 +1,12 @@
 use strict;
 use warnings;
 
-use Test::Requires
-    'MooseX::SimpleConfig'; # skip all if not installed
-
 # respect the configfile value passed into the constructor.
 
+use Test::Requires 'MooseX::SimpleConfig';  # skip all if not installed
 use Test::More tests => 3;
 use Test::NoWarnings 1.04 ':early';
-use Path::Class;    # exports file, dir
+use Path::Tiny;
 
 # avoid warning if all we have installed is YAML or YAML::Syck - the user will
 # see this eventually when he actually uses MooseX::SimpleConfig in his own
@@ -28,7 +26,7 @@ $Config::Any::YAML::NO_YAML_XS_WARNING = 1;
 }
 
 {
-    my $configfile = file(qw(t 112_configfile_constructor_arg.yml))->stringify;
+    my $configfile = path(qw(t 112_configfile_constructor_arg.yml))->stringify;
 
     my $obj = Foo->new_with_options(configfile => $configfile);