Fixed the pod path in archive
[sdlgit/SDL_perl.git] / t / core_rect.t
CommitLineData
05eb21df 1#!perl
8fde61e3 2use strict;
05eb21df 3use warnings;
4use Test::More tests => 10;
5use_ok('SDL::Rect');
6
7my $rect = SDL::Rect->new( 0, 0, 0, 0 );
8isa_ok( $rect, 'SDL::Rect' );
9is( $rect->x(), 0, 'x is 0' );
10is( $rect->y(), 0, 'y is 0' );
11is( $rect->w(), 0, 'w is 0' );
12is( $rect->h(), 0, 'h is 0' );
13
14$rect->x(1);
15$rect->y(2);
16$rect->w(3);
17$rect->h(4);
18
19is( $rect->x(), 1, 'x is now 1' );
20is( $rect->y(), 2, 'y is now 2' );
21is( $rect->w(), 3, 'w is now 3' );
22is( $rect->h(), 4, 'h is now 4' );
8fde61e3 23