Document how to pass new attribute values at instance-role application time
[gitmo/Moose.git] / t / lib / Foo.pm
1
2 package Foo;
3 use Moose;
4
5 has 'bar' => (is => 'rw');
6
7 1;