Applied patch ready for merge
[sdlgit/SDL_perl.git] / t / colorpm.t
index 4714d65..67dba94 100644 (file)
@@ -1,8 +1,34 @@
 #!/usr/bin/perl -w
 #
-# Copyright (C) 2003,2006 Tels
+# Copyright (C) 2003 Tels
 # Copyright (C) 2004 David J. Goehrig
 #
+# Copyright (C) 2005 David J. Goehrig <dgoehrig\@cpan.org>
+#
+# ------------------------------------------------------------------------------
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+# 
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+# 
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+#
+# ------------------------------------------------------------------------------
+#
+# Please feel free to send questions, suggestions or improvements to:
+#
+#      David J. Goehrig
+#      dgoehrig\@cpan.org
+#
+#
 # basic testing of SDL::Color
 
 BEGIN {
@@ -13,7 +39,7 @@ use strict;
 
 use Test::More;
 
-plan ( tests => 15 );
+plan ( tests => 10 );
 
 use_ok( 'SDL::Color' ); 
   
@@ -22,7 +48,6 @@ can_ok ('SDL::Color', qw/
        r 
        g 
        b 
-       rgb 
        pixel /);
 
 # some basic tests:
@@ -33,19 +58,9 @@ 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)');
-