Added Mix_VolumeChunk to SDL::Mixer + tests
[sdlgit/SDL_perl.git] / t / sdlpm.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
7
8BEGIN {
9 unshift @INC, 'blib/lib','blib/arch';
10}
11
12use strict;
13use SDL::Config;
14
15use Test::More;
16
17plan ( tests => 9 );
18
19use_ok( 'SDL' );
20
21can_ok ('SDL', qw/in verify/);
22
23is (SDL::in('foo','bar'), 0, "foo isn't in ('bar')");
24is (SDL::in('foo','foo'), 1, "foo is in ('foo')");
25is (SDL::in('foo','foo','bar'), 1, "foo is in ('foo','bar')");
26is (SDL::in('foo','foo','bar','foo'), 1, "foo is once in ('foo','bar','foo')");
27is (SDL::in('foo','fab','bar'), 0, "foo isn't in ('fab','bar')");
28is (SDL::in('foo','fab',undef,'bar'), 0, "foo isn't in ('fab',undef,'bar')");
29is (SDL::in('foo','fab',undef,'foo'), 1, "foo is in ('fab',undef,'foo')");
30