Fixed tests. Now installable
[sdlgit/SDL_perl.git] / t / fontpm.t
CommitLineData
8fde61e3 1#!/usr/bin/perl -w
2#
3# Copyright (C) 2003 Tels
4# Copyright (C) 2004 David J. Goehrig
d9dfc034 5# Copyright (C) 2009 Kartik Thakore
8fde61e3 6# basic testing of SDL::Font
7
8BEGIN {
d9dfc034 9 unshift @INC, 'blib/lib','blib/arch', 'blib/arch/auto/src/SDL/SFont';
8fde61e3 10}
11
12use strict;
13use SDL::Config;
14
15use Test::More;
16
17if ( SDL::Config->has('SDL_image') ) {
18 plan ( tests => 2 );
19} else {
20 plan ( skip_all => 'SDL_image support not compiled' );
21}
22
23use_ok( 'SDL::Font' );
24
25can_ok ('SDL::Font', qw/ new use /);
26
27