From: gfx Date: Thu, 17 Sep 2009 01:04:59 +0000 (+0900) Subject: Add missing is => 'bare' to a test X-Git-Tag: 0.32~53 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ab1a1cce52104e19f86fec43e8ffa9f008041ee5;p=gitmo%2FMouse.git Add missing is => 'bare' to a test --- diff --git a/t/400-define-role.t b/t/400-define-role.t index 7202797..1441463 100644 --- a/t/400-define-role.t +++ b/t/400-define-role.t @@ -44,7 +44,7 @@ lives_ok { package Role; use Mouse::Role; - has 'foo'; + has 'foo' => (is => 'bare'); no Mouse::Role; };