Fixed up tests for now
Kartik Thakore [Mon, 9 Nov 2009 20:11:00 +0000 (15:11 -0500)]
lib/SDL/Events.pm
t/00-load.t
t/core_events.t

index 558f24e..7f25ef4 100644 (file)
@@ -1,7 +1,6 @@
 package SDL::Events;
 use strict;
 use warnings;
-use SDL::keysym;
 require Exporter;
 require DynaLoader;
 our @ISA = qw(Exporter DynaLoader);
index 66b42a3..9f946ab 100644 (file)
@@ -16,20 +16,6 @@ SDL::Overlay
 SDL::Rect
 SDL::Events 
 SDL::Event 
-SDL::ActiveEvent 
-SDL::ExposeEvent 
-SDL::JoyAxisEvent 
-SDL::JoyBallEvent 
-SDL::JoyButtonEvent 
-SDL::JoyHatEvent 
-SDL::KeyboardEvent 
-SDL::keysym 
-SDL::MouseButtonEvent 
-SDL::MouseMotionEvent 
-SDL::QuitEvent 
-SDL::ResizeEvent 
-SDL::SysWMEvent 
-SDL::UserEvent                         
 /;
     plan tests => scalar @modules;
 
index 1415ddc..68856a2 100644 (file)
@@ -3,19 +3,6 @@ use strict;
 use SDL;
 use SDL::Event;
 use SDL::Events;
-use SDL::ExposeEvent;
-use SDL::JoyAxisEvent;
-use SDL::JoyBallEvent;
-use SDL::JoyButtonEvent;
-use SDL::JoyHatEvent;
-use SDL::KeyboardEvent;
-use SDL::keysym;
-use SDL::MouseButtonEvent;
-use SDL::MouseMotionEvent;
-use SDL::QuitEvent;
-use SDL::ResizeEvent;
-use SDL::SysWMEvent;
-use SDL::UserEvent;
 use SDL::Video;
 use Devel::Peek;
 use Test::More;
@@ -48,6 +35,8 @@ syswm
 
 can_ok( 'SDL::Events',           @done); 
 can_ok( 'SDL::Event',            @done_event);
+
+=pod
 can_ok( 'SDL::ExposeEvent',      qw/type/);
 can_ok( 'SDL::JoyAxisEvent',     qw/type which axis value/);
 can_ok( 'SDL::JoyBallEvent',     qw/type which ball xrel yrel/);
@@ -61,6 +50,7 @@ can_ok( 'SDL::QuitEvent',        qw/type/);
 can_ok( 'SDL::ResizeEvent',      qw/type w h/);
 can_ok( 'SDL::SysWMEvent',       qw/type msg/);
 can_ok( 'SDL::UserEvent',        qw/type code data1 data2/);
+=cut 
 
 SDL::init(SDL_INIT_VIDEO);