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