Add test for modify-in-place usage of ->map, as well as an example in the pod docs.
[gitmo/Moose-Autobox.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use inc::Module::Install;
4 use Module::Install::ExtraTests;
5
6 name('Moose-Autobox');
7 all_from('lib/Moose/Autobox.pm');
8
9 requires 'autobox'         => '2.23';
10 requires 'Moose'           => '0.42';
11 requires 'Perl6::Junction' => '1.40000';
12
13 test_requires 'Test::More'      => '0.62';
14 test_requires 'Test::Exception' => '0.21';
15
16 tests_recursive;
17 extra_tests;
18
19 WriteAll;