Add a readme for our test suite, fixes #27
[sgn.git] / t / DrawContigAlign / Pane.t
blob64fdc7e6e215a66d8da530aeeb39c86406c062cc
1 use Test::More tests => 4;
3 use CXGN::Transcript::DrawContigAlign::Pane;
4 use constant Pane => 'CXGN::Transcript::DrawContigAlign::Pane';
6 my $pane = Pane->new(27, 70, 30, 400);
7 is($pane->north, 27,  'Pane north');
8 is($pane->south, 70,  'Pane south');
9 is($pane->west,  30,  'Pane west');
10 is($pane->east,  400, 'Pane east');