1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
#============================================================= -*-perl-*-
#
# t/gdtext.t
#
# Test the GD::Text plugin. Tests are based on the GD::Text module tests.
#
# Written by Craig Barratt <craig@arraycomm.com>
#
# This is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
#
# $Id: gdtext.t,v 2.4 2002/08/12 11:07:15 abw Exp $
#
#========================================================================
use strict;
use lib qw( ../lib );
use Template;
use Template::Test;
$^W = 1;
eval "use GD; use GD::Text;";
if ( $@ || $GD::VERSION < 1.20 ) {
skip_all('GD module(s) not installed');
}
test_expect(\*DATA);
__END__
-- test --
[%
USE gd_c = GD.Constants;
USE t = GD.Text;
x = t.set_text('Some text');
r = t.get('width', 'height', 'char_up', 'char_down');
r.join(":"); "\n";
x = t.set_text('Some other text');
r.0 = t.get('width');
r.join(":"); "\n";
x = t.set_font(gd_c.gdGiantFont);
t.is_builtin; "\n";
t.width('Foobar Banana'); "\n";
t.get('text'); "\n";
r = t.get('width', 'height', 'char_up', 'char_down');
r.join(":"); "\n";
-%]
-- expect --
54:13:13:0
90:13:13:0
1
117
Some other text
135:15:15:0
-- test --
[%
USE gd_c = GD.Constants;
USE t = GD.Text(text => 'FooBar Banana', font => gd_c.gdGiantFont);
t.get('width'); "\n";
-%]
-- expect --
117
|