Added failing test for http://rt.cpan.org/Public/Bug/Display.html?id=7336
Kartik Thakore [Sun, 23 Aug 2009 15:22:54 +0000 (11:22 -0400)]
t/toolfontpm.t

index e7efa73..6bdcf6b 100644 (file)
@@ -36,13 +36,14 @@ BEGIN {
 }
 
 use strict;
+use SDL;
 use SDL::Config;
 
 use Test::More;
 
 if ( SDL::Config->has('SDL_image') 
        && SDL::Config->has('SDL_ttf') ) {
-       plan ( tests => 2 );
+       plan ( tests => 3 );
 } else {
        plan ( skip_all => 
                ( SDL::Config->has('SDL_image') 
@@ -59,4 +60,12 @@ can_ok ('SDL::Tool::Font', qw/
        new 
        print
        /);
+my $font = new SDL::Tool::Font
+               -normal => 1,
+               -ttfont => 'test/data/aircut3.ttf',
+               -size => 20,
+               -fg => $SDL::Color::black,
+               -bg => $SDL::Color::black;
+
+ok( SDL::TTFSizeUTF8( $font, "Test"), "Test for SDL::TTFSizeUTF8." );