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