Skipping some tests for now
[sdlgit/SDL_perl.git] / t / apppm.t
CommitLineData
8fde61e3 1#!/usr/bin/perl -w
2#
3# Copyright (C) 2003 Tels
4# Copyright (C) 2004 David J. Goehrig
7b6a53a1 5#
6# ------------------------------------------------------------------------------
7#
8# This library is free software; you can redistribute it and/or
9# modify it under the terms of the GNU Lesser General Public
10# License as published by the Free Software Foundation; either
11# version 2.1 of the License, or (at your option) any later version.
12#
13# This library is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16# Lesser General Public License for more details.
17#
18# You should have received a copy of the GNU Lesser General Public
19# License along with this library; if not, write to the Free Software
20# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21#
22# ------------------------------------------------------------------------------
23#
24# Please feel free to send questions, suggestions or improvements to:
25#
26# David J. Goehrig
27# dgoehrig\@cpan.org
28#
29#
8fde61e3 30# basic testing of SDL::App
31
32BEGIN {
7b6a53a1 33 unshift @INC, 'blib/lib','blib/arch';
8fde61e3 34}
35
36use strict;
1ca91531 37use SDL;
8fde61e3 38use SDL::Config;
39
40use Test::More;
41
42plan ( tests => 2 );
43
44use_ok( 'SDL::App' );
45
46can_ok ('SDL::App', qw/
47 new
48 resize
49 title
50 delay
51 ticks
52 error
53 warp
54 fullscreen
55 iconify
56 grab_input
57 loop
58 sync
59 attribute /);
1ca91531 60
61my $app = SDL::App->new(-title => "Test", -width => 640, -height => 480, -init => SDL_INIT_VIDEO);
62
63 $app->sync;
64 sleep(1);
65