tests shouldn't be executable
[gitmo/Role-Tiny.git] / t / role-basic-basic.t
CommitLineData
8e50c419 1use Test::More tests => 3;
2use lib 'lib', 't/role-basic/lib';
3
4use_ok 'My::Example' or BAIL_OUT 'Could not load test module My::Example';
5can_ok 'My::Example', 'no_conflict';
6is +My::Example->no_conflict, 'My::Does::Basic::no_conflict',
7 '... and it should return the correct value';