From: Shawn M Moore Date: Tue, 9 Dec 2008 03:38:37 +0000 (+0000) Subject: Need to specify is => 'rw' for the test to be closer to right X-Git-Tag: 0.19~125 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b9553333c7fbf37d6a893364cc17d011fdeec266;p=gitmo%2FMouse.git Need to specify is => 'rw' for the test to be closer to right --- diff --git a/t/033-readwrite.t b/t/033-readwrite.t index 877152e..ff4b74b 100644 --- a/t/033-readwrite.t +++ b/t/033-readwrite.t @@ -11,6 +11,7 @@ do { # We want this attr to have a reader and writer with unconventional names, # and not the default rw_attr method. -- rjbs, 2008-12-04 has 'rw_attr' => ( + is => 'rw', reader => 'read_attr', writer => 'write_attr', );;