use Moo like the rest of the code.
[catagits/App-IdiotBox.git] / t / lib / Data / Perl / Stream / Array.pm
index cb0ccf5..0edb777 100644 (file)
@@ -1,6 +1,6 @@
 package Data::Perl::Stream::Array;
 
-use Moose;
+use Moo;
 use Method::Signatures::Simple;
 
 has _array => (is => 'rw', required => 1, init_arg => 'array');
@@ -17,6 +17,4 @@ method map ($map_func) {
   ref($self)->new(array => [ map { $map_func->($_) } @{$self->_array} ]);
 }
 
-__PACKAGE__->meta->make_immutable;
-
 1;