rename union to composite internally to match Moose naming, update POD
[gitmo/Role-Tiny.git] / t / role-basic / lib / My / Example.pm
1 package My::Example;
2
3 use Role::Tiny 'with';
4
5 with 'My::Does::Basic';
6
7 sub new { bless {} => shift }
8
9 sub turbo_charger {}
10 $My::Example::foo = 1;
11 sub foo() {}
12
13 1;