Applied Tels patch for faster Color.pm
[sdlgit/SDL_perl.git] / t / colorpm.t
index 3e40297..4714d65 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl -w
 #
-# Copyright (C) 2003 Tels
+# Copyright (C) 2003,2006 Tels
 # Copyright (C) 2004 David J. Goehrig
 #
 # basic testing of SDL::Color
@@ -13,7 +13,7 @@ use strict;
 
 use Test::More;
 
-plan ( tests => 10 );
+plan ( tests => 15 );
 
 use_ok( 'SDL::Color' ); 
   
@@ -22,6 +22,7 @@ can_ok ('SDL::Color', qw/
        r 
        g 
        b 
+       rgb 
        pixel /);
 
 # some basic tests:
@@ -32,9 +33,19 @@ is ($color->r(),0, 'r is 0');
 is ($color->g(),0, 'g is 0');
 is ($color->b(),0, 'b is 0');
 
+is (join(":", $color->rgb()), '0:0:0', 'r, g and b are 0');
+
 $color = SDL::Color->new( -r => 0xff, -g => 0xff, -b => 0xff);
 is (ref($color), 'SDL::Color', 'new was ok');
 is ($color->r(),255, 'r is 255');
 is ($color->g(),255, 'g is 255');
 is ($color->b(),255, 'b is 255');
 
+is (join(":", $color->rgb()), '255:255:255', 'r, g and b are 255');
+is (join(":", $color->rgb(128,0,80)), '128:0:80', 'r, g and b are set');
+is (join(":", $color->rgb()), '128:0:80', 'r, g and b still set');
+
+# test the new new($r,$g,$b) calling style
+$color = SDL::Color->new( 255,70,128);
+is (join(":", $color->rgb()), '255:70:128', 'r, g and b are set via new($r,$g,$b)');
+