Remove duplicate test, changelogging, bump version, add rafl to the POD
[gitmo/MooseX-Emulate-Class-Accessor-Fast.git] / t / recreated_accessors.t
index 8b63b59..8fd5799 100644 (file)
@@ -2,7 +2,7 @@
 
 use strict;
 use warnings;
-use Test::More tests => 4;
+use Test::More tests => 5;
 use Test::Exception;
 
 # 1
@@ -25,8 +25,9 @@ lives_ok {
   $i->foo('foo');
   $i->baz('baz');
 
-  # 3-4
+  # 3-5
   is($i->foo, 'foo');
   is($i->bar, 'bar');
+  is($i->{baz}, 'baz');
 } 'No exception';