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

class Testing::Something::SubClass2 {
    is => 'Testing::Something',
    has => [
        coolness => { is => 'Integer' },
    ],
};

sub cool_method {
  'a';
}

1;