Missing files added
[sdlgit/SDL_perl.git] / t / eventpm.t
CommitLineData
8fde61e3 1#!/usr/bin/perl -w
2#
3# Copyright (C) 2003 Tels
4# Copyright (C) 2004 David J. Goehrig
5#
6# basic testing of SDL::Event
7
8BEGIN {
9 unshift @INC, 'blib/lib','blib/arch';
10}
11
12use strict;
13
14use Test::More;
15
16plan ( tests => 2 );
17
18use_ok( 'SDL::Event' );
19
20can_ok ('SDL::Event', qw/
21 new
22 type
23 pump
24 poll
8ead669e 25 peep
8fde61e3 26 wait
27 set
28 set_unicode
29 set_key_repeat
30 active_gain
31 active_state
32 key_state
33 key_sym
34 key_name
35 key_mod
36 key_unicode
37 key_scancode
38 motion_state
39 motion_x
40 motion_y
41 motion_xrel
42 motion_yrel
43 button
44 button_state
45 button_x
8ead669e 46 button_y
47 /);
8fde61e3 48
49
50