rename union to composite internally to match Moose naming, update POD
[gitmo/Role-Tiny.git] / t / role-basic / lib / My / Does / Basic.pm
1 package My::Does::Basic;
2
3 use Role::Tiny;
4
5 requires 'turbo_charger';
6
7 sub no_conflict {
8     return "My::Does::Basic::no_conflict";
9 }
10
11 1;