The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#! perl

use Test::More;

use MooseX::amine;
use lib './t/lib';

my $mex = MooseX::amine->new( 'Test::Inheritance::ObjectWithCommonRole' );

isa_ok( $mex , 'MooseX::amine' );

my $expected_data_structure = {
  attributes   => {
    base_attribute   => {
      from   => 'Test::Inheritance::BaseWithCommonRole',
      meta   => { constraint => 'Str' },
      reader => 'base_attribute'
    },
    string_attribute => {
      accessor => 'string_attribute',
      from     => 'Test::Inheritance::ObjectWithCommonRole',
      meta     => { constraint => 'Str' }
    },
    role_attribute => {
      accessor => 'role_attribute',
      from     => 'Test::Basic::Role',
      meta     => {
        constraint    => 'Str' ,
        is_required   => 1 ,
        documentation => 'required string' ,
      } ,
    } ,
    common_role_attribute => {
      accessor => 'common_role_attribute' ,
      from     => 'Test::Inheritance::CommonRole' ,
      meta     => {
        constraint    => 'Int' ,
        documentation => 'this is some test documentation' ,
      } ,
    } ,
  },
  methods => {
    base_method         => { from => 'Test::Inheritance::BaseWithCommonRole' ,
                             code => qq|sub base_method  { return 'this is a test from the base' }| , } ,
    test_method         => { from => 'Test::Inheritance::ObjectWithCommonRole' ,
                             code => qq|sub test_method { return 'this is a test' }| , } ,
    role_method         => { from => 'Test::Basic::Role' ,
                             code => qq|sub role_method  { return 'role' }| , } ,
    common_role_method  => { from => 'Test::Inheritance::CommonRole' ,
                             code => qq|sub common_role_method { return 'this is the role' }| , } ,
  }
};
is_deeply( $mex->examine , $expected_data_structure , 'see expected output from examine()' );

done_testing();