X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FUnderscoreClass.pm;fp=t%2Flib%2FUnderscoreClass.pm;h=980b86218a6c1ca1357bdf90840ed36ae39c4b57;hb=141b507ace5957c098c52ceb7afaf21d5928a02d;hp=0000000000000000000000000000000000000000;hpb=ce08ea519f2105eed00cbef6661c1637cbded27d;p=gitmo%2FMoo.git diff --git a/t/lib/UnderscoreClass.pm b/t/lib/UnderscoreClass.pm new file mode 100644 index 0000000..980b862 --- /dev/null +++ b/t/lib/UnderscoreClass.pm @@ -0,0 +1,5 @@ +package UnderscoreClass; +use Moo; +with qw(UnderscoreRole); +sub c1 { 'c1' }; +1;