Fixed the pod path in archive
[sdlgit/SDL_perl.git] / t / ttfontpm.t
1 #!/usr/bin/perl -w
2 #
3 # Copyright (C) 2003 Tels
4 # Copyright (C) 2004 David J. Goehrig
5 #
6 # Copyright (C) 2005 David J. Goehrig <dgoehrig\@cpan.org>
7 #
8 # ------------------------------------------------------------------------------
9 #
10 # This library is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU Lesser General Public
12 # License as published by the Free Software Foundation; either
13 # version 2.1 of the License, or (at your option) any later version.
14
15 # This library is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 # Lesser General Public License for more details.
19
20 # You should have received a copy of the GNU Lesser General Public
21 # License along with this library; if not, write to the Free Software
22 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
23 #
24 # ------------------------------------------------------------------------------
25 #
26 # Please feel free to send questions, suggestions or improvements to:
27 #
28 #       David J. Goehrig
29 #       dgoehrig\@cpan.org
30 #
31 #
32 # basic testing of SDL::TTFont
33
34 BEGIN {
35         unshift @INC, 'blib/lib','blib/arch';
36 }
37
38 use strict;
39 use SDL::Config;
40
41 use Test::More;
42
43 plan( skip_all => "Failing test due to moving stuff around");
44
45 if ( SDL::Config->has('SDL_ttf') ) {
46         plan ( tests => 2 );
47 } else {
48         plan ( skip_all => 'SDL_ttf support not compiled' );
49 }
50
51 use_ok( 'SDL::TTFont' ); 
52   
53 can_ok ('SDL::TTFont', qw/
54         new 
55         print 
56         width 
57         height
58         ascent 
59         descent 
60         normal 
61         bold 
62         italic 
63         underline
64         text_shaded 
65         text_solid 
66         text_blended 
67         utf8_shaded 
68         utf8_solid 
69         utf8_blended 
70         unicode_shaded 
71         unicode_solid 
72         unicode_blended /);