moved skip test
Kartik Thakore [Sun, 30 Aug 2009 22:56:15 +0000 (18:56 -0400)]
t/timerpm.t

index b94b1ee..430c2f7 100644 (file)
@@ -41,6 +41,11 @@ use SDL::Config;
 
 use Test::More;
 
+if (SDL::Init(SDL_INIT_TIMER) < 0 )
+{
+        plan( skip_all => "Cannot initialize timer!!" );
+
+}
 plan ( tests => 4 );
 
 use_ok( 'SDL::Timer' ); 
@@ -51,11 +56,6 @@ can_ok ('SDL::Timer', qw/
 
 my $fired = 0;
 
-if (SDL::Init(SDL_INIT_TIMER) < 0 )
-{
-        plan( skip_all => "Cannot initialize timer!!" );
-
-}
 
 my $timer = new SDL::Timer 
        sub { $fired++ }, -delay => 30, -times => 1;