The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Test::Inheritance::CommonRole;
use Moose::Role;
has 'common_role_attribute' => ( is => 'rw' , isa => 'Int' , default => 1 , documentation => 'this is some test documentation' );
sub common_role_method { return 'this is the role' }
1;