#!/usr/bin/perl -w use strict; use lib qw(t/lib); use Test::More tests => 1; use TestAppBuild; clean_install(); set_module_dir( 't/Bar' ); run_build_pl(); run_build(); run_build( 'install' ); check_tree( 't/test_install/remapped', { 'lib/perl/MyBar.pm' => {}, 'bin/program' => { executable => 1 }, ( $^O eq 'MSWin32' ) ? ( 'bin/program.bat' => { executable => 1 } ) : ( ), 'lib/perl/MyPod.pm' => {}, if_has_man( "man/MyPod.$Config{man3ext}" => {} ), if_has_html( "html/site/lib/MyPod.html" => {} ), } );