Test number on t/code_video.t was wrong. Fixed it
[sdlgit/SDL_perl.git] / t / core_surface.t
index 3fe549e..e006f60 100644 (file)
@@ -21,6 +21,7 @@ use Test::More tests => 35;
 
 my $surface
     = SDL::Surface->new( SDL::SDL_ANYFORMAT(), 640, 320, 8, 0, 0, 0, 0 );
+    #TODO: test SDL::Surface->new_from
 isa_ok( $surface, 'SDL::Surface' );
 is( $surface->w,     640, 'surface has width' );
 is( $surface->h,     320, 'surface has height' );
@@ -99,4 +100,4 @@ diag( 'This is in surface : ' . SDL::Surface::get_pixels($app) );
 
 pass 'did this pass';
 
-SDL::Delay(100);
+SDL::delay(100);