From: Kartik Thakore Date: Sun, 23 Aug 2009 15:22:54 +0000 (-0400) Subject: Added failing test for http://rt.cpan.org/Public/Bug/Display.html?id=7336 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e7e70be2e54e7e4057b9f2a5c1c0a9cd225a8fce;p=sdlgit%2FSDL_perl.git Added failing test for rt.cpan.org/Public/Bug/Display.html?id=7336 --- diff --git a/t/toolfontpm.t b/t/toolfontpm.t index e7efa73..6bdcf6b 100644 --- a/t/toolfontpm.t +++ b/t/toolfontpm.t @@ -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." );