The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use Test::More tests => 7;

use Graphics::Primitive::Font;

BEGIN {
    use_ok('Graphics::Primitive::TextBox');
}

my $tb = Graphics::Primitive::TextBox->new;
isa_ok($tb, 'Graphics::Primitive::TextBox');

cmp_ok($tb->prepared, '==', 0, 'not prepared');
$tb->prepared(1);
cmp_ok($tb->prepared, '==', 1, 'prepared');
$tb->text('Different');
cmp_ok($tb->prepared, '==', 0, 'not prepared');

cmp_ok($tb->horizontal_alignment, 'eq', 'left', 'default horizontal alignment');
cmp_ok($tb->vertical_alignment, 'eq', 'top', 'default vertical alignment');