update repo to point to github
[gitmo/Moo.git] / t / lib / UnderscoreClass.pm
1 package UnderscoreClass;
2 use Moo;
3 with qw(UnderscoreRole);
4 sub c1 { 'c1' };
5 1;