X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F007-attributes.t;h=fdb3ed3091626895f6108a9dee64d2f4391a5152;hb=bf8497ea04511714983c1e914d758ca19ccdf39d;hp=869ed335dcb91393c60e852dfcaf4f2c3ed0f27b;hpb=8c831d08b0d23c9dfcc4a85f6444915c988b5538;p=gitmo%2FMouse.git diff --git a/t/007-attributes.t b/t/007-attributes.t index 869ed33..fdb3ed3 100644 --- a/t/007-attributes.t +++ b/t/007-attributes.t @@ -2,13 +2,15 @@ use strict; use warnings; use Test::More tests => 10; -use Mouse::Util ':test'; +use Test::Exception; do { package Class; use Mouse; - has 'x'; + has 'x' => ( + is => 'bare', + ); has 'y' => ( is => 'ro',