first pass at testing
[gitmo/MooseX-Antlers.git] / t / lib / One.pm
CommitLineData
a39b801f 1package One;
2
3use Moose;
4
5my $called_foo = 0;
6
7sub get_called_foo { $called_foo }
8
9has foo => (is => 'rw', required => 1, trigger => sub { $called_foo++ });
10
111;