Warnings about deprecated runtime plugins
[catagits/Catalyst-Runtime.git] / t / optional_stress.t
index eed111a..c0f2597 100644 (file)
@@ -8,7 +8,6 @@ use lib "$FindBin::Bin/lib";
 
 use Test::More;
 use Catalyst::Test 'TestApp';
-use YAML;
 
 our ( $iters, $tests );
 
@@ -16,6 +15,9 @@ BEGIN {
     plan skip_all => 'set TEST_STRESS to enable this test'
       unless $ENV{TEST_STRESS};
 
+    eval "use YAML";
+    plan skip_all => 'YAML is required for this test' if $@;
+
     $iters = $ENV{TEST_STRESS} || 10;
     $tests = YAML::LoadFile("$FindBin::Bin/optional_stress.yml");