Missing files added
[sdlgit/SDL_perl.git] / t / toolfontpm.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::Tool::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 && SDL::Config->has('SDL_ttf') ) {
19 plan ( tests => 2 );
20} else {
21 plan ( skip_all =>
22 ( SDL::Config->has('SDL_image')
23 ? ''
24 : ' SDL_image support not compiled')
25 . ( SDL::Config->has('SDL_ttf')
26 ? ''
27 : ' SDL_ttf support not compiled'));
28}
29
30use_ok( 'SDL::Tool::Font' );
31
32can_ok ('SDL::Tool::Font', qw/
33 new
34 print
35 /);
36