allow tests to run without warnings even if YAML::XS is not installed
[gitmo/MooseX-Getopt.git] / t / 112_configfile_constructor_arg.t
index 746e62a..8cb1381 100644 (file)
@@ -6,7 +6,15 @@ use Test::Requires
 
 # respect the configfile value passed into the constructor.
 
-use Test::More tests => 2;
+use Test::More tests => 3;
+use Test::NoWarnings 1.04 ':early';
+use Path::Class;    # exports file, dir
+
+# 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
+# code
+use Config::Any::YAML;
+$Config::Any::YAML::NO_YAML_XS_WARNING = 1;
 
 {
     package Foo;
@@ -20,7 +28,7 @@ use Test::More tests => 2;
 }
 
 {
-    my $configfile = 't/112_configfile_constructor_arg.yml';
+    my $configfile = file(qw(t 112_configfile_constructor_arg.yml))->stringify;
 
     my $obj = Foo->new_with_options(configfile => $configfile);