wow .. I don't even know how this fixes sound
[sdlgit/SDL_perl.git] / t / intergation1.t
CommitLineData
46e4c5bf 1#!/usr/bin/perl -w
2#
3# Copyright (C) 2003 Tels
4# Copyright (C) 2004 David J. Goehrig
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#
30# basic testing of SDL::App
31
32BEGIN {
33 unshift @INC, 'blib/lib','blib/arch';
34}
35
36use strict;
37use SDL;
38use SDL::Config;
39use SDL::Rect;
40use SDL::Color;
41use Test::More;
42
43plan ( tests => 2 );
44
45use_ok( 'SDL::App' );
46
47can_ok ('SDL::App', qw/
48 new
49 resize
50 title
51 delay
52 ticks
53 error
54 warp
55 fullscreen
56 iconify
57 grab_input
58 loop
59 sync
60 attribute /);
61
62my $app = SDL::App->new(-title => "Test", -width => 640, -height => 480, -init => SDL_INIT_VIDEO);
63
64 my $rect = SDL::Rect->new( 0,0, 10, 20);
65
66 my $blue = SDL::Color->new(
67 -r => 0x00,
68 -g => 0x00,
69 -b => 0xff,
70 );
71 $app->fill($rect, $blue);
72 $app->update($rect);
73
74
75 $app->sync;
76 sleep(1);
77