typo fixes and skeleton for first test
[gitmo/MooseX-Attribute-Cached.git] / Makefile.PL
CommitLineData
cf0ef7c5 1use inc::Module::Install;
2
b5552897 3perl_version '5.008008';
cf0ef7c5 4
5name 'MooseX-Attribute-Cached';
6all_from 'lib/MooseX/Attribute/Cached.pm';
b5552897 7author 'John Napiorkowski <john.napiorkowski@takkle.com>';
cf0ef7c5 8
b5552897 9requires 'Moose' => '0.44';
cf0ef7c5 10
11build_requires 'Test::More' => '0.70';
12build_requires 'Test::Pod' => '1.14';
13build_requires 'Test::Pod::Coverage' => '1.08';
14
15auto_install;
16tests "t/*.t t/*/*.t";
17WriteAll;
18