X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F010-required.t;h=e6a69909d2729459ad12a6b55135c4fcbd3ae75c;hb=74be9f760d045a0174d76e54de1c66d6b66454c4;hp=161717c0a7cb06e633e2b3c83bc97c2c22218c96;hpb=b5bc67d9637279a43d742b979c4dcff58570506b;p=gitmo%2FMouse.git diff --git a/t/010-required.t b/t/010-required.t index 161717c..e6a6990 100644 --- a/t/010-required.t +++ b/t/010-required.t @@ -9,15 +9,18 @@ do { use Mouse; has foo => ( + is => 'bare', required => 1, ); has bar => ( + is => 'bare', required => 1, default => 50, ); has baz => ( + is => 'bare', required => 1, default => sub { 10 }, );