diff options
author | Daniel Friesel <derf@finalrewind.org> | 2012-04-15 13:15:29 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2012-04-15 13:15:29 +0200 |
commit | 03e96339e979c4df270f6a52c850807cf2a2eb27 (patch) | |
tree | ed8214af0df5462cf3aad7a97a5757c0a0ce66af /Build.PL | |
parent | 43d723eeb32041b612d9d1d2aa9bbdb4a170f4d0 (diff) |
move 50-icli to author tests
Diffstat (limited to 'Build.PL')
-rw-r--r-- | Build.PL | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -4,7 +4,11 @@ use strict; use warnings; use Module::Build; -my $build = Module::Build->new( +my $build = Module::Build->subclass( + code => q( + sub ACTION_testauthor { shift->generic_tast(type => 'author') } + ) +)->new( build_requires => { 'Test::More' => 0, 'Test::Compile' => 0, @@ -24,5 +28,8 @@ my $build = Module::Build->new( 'Term::Size' => 0, }, script_files => 'bin/', + test_types => { + author => '.at', + }, ); $build->create_build_script(); |