1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
#!/usr/bin/perl
use Test::More tests => 16;
use Convert::Color::HSV;
my $red = Convert::Color::HSV->new( 0, 1, 1 );
is( $red->hue, 0, 'red hue' );
is( $red->saturation, 1, 'red saturation' );
is( $red->value, 1, 'red value' );
is_deeply( [ $red->hsv ], [ 0, 1, 1 ], 'red hsv' );
my $green = Convert::Color::HSV->new( 120, 1, 1 );
is( $green->hue, 120, 'green hue' );
is( $green->saturation, 1, 'green saturation' );
is( $green->value, 1, 'green value' );
is_deeply( [ $green->hsv ], [ 120, 1, 1 ], 'green hsv' );
my $blue = Convert::Color::HSV->new( 240, 1, 1 );
is( $blue->hue, 240, 'blue hue' );
is( $blue->saturation, 1, 'blue saturation' );
is( $blue->value, 1, 'blue value' );
is_deeply( [ $blue->hsv ], [ 240, 1, 1 ], 'blue hsv' );
my $yellow = Convert::Color::HSV->new( '60,1,1' );
is( $yellow->hue, 60, 'yellow hue' );
is( $yellow->saturation, 1, 'yellow saturation' );
is( $yellow->value, 1, 'yellow value' );
is_deeply( [ $yellow->hsv ], [ 60, 1, 1 ], 'yellow hsv' );
|