The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Testing::Color;

use strict;
use warnings;
use Testing;

class Testing::Color {
    id_by => 'color_name',
    has => [qw( redness greenness blueness ) ],
};

1;