From: Justin Hunter Date: Thu, 27 Aug 2009 05:16:14 +0000 (-0700) Subject: make attribute bare to silence warning X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMooseX-AutoDoc.git;a=commitdiff_plain;h=625c721d24b84125f728ef19c5324b1a0116aeb5 make attribute bare to silence warning --- diff --git a/t/lib/AutoDocTest7.pm b/t/lib/AutoDocTest7.pm index d2807e0..a77ed1e 100644 --- a/t/lib/AutoDocTest7.pm +++ b/t/lib/AutoDocTest7.pm @@ -3,6 +3,6 @@ package AutoDocTest7; use Moose; use AutoDocTestTypes qw( TestType ); -has typed_attr => (isa => TestType); +has typed_attr => (isa => TestType, is => 'bare'); 1;