X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Foptional_stress.t;h=9e73cc5125f7951402442db68110b3b8fa0f7b06;hp=eed111a65cc2de5a555f5fb58e40b79e6daab18d;hb=33d3ae66457093bf400181b1a8145460257fc563;hpb=c7ded7aaf69e506924a5406349fd665c7717acb8 diff --git a/t/optional_stress.t b/t/optional_stress.t index eed111a..9e73cc5 100644 --- a/t/optional_stress.t +++ b/t/optional_stress.t @@ -1,20 +1,21 @@ -#!perl - use strict; use warnings; +use Test::More; +BEGIN { + plan skip_all => 'set TEST_STRESS to enable this test' + unless $ENV{TEST_STRESS}; +} + use FindBin; use lib "$FindBin::Bin/lib"; - -use Test::More; use Catalyst::Test 'TestApp'; -use YAML; our ( $iters, $tests ); 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");