Module-Build-SysPath
view release on metacpan or search on metacpan
examples/Sys-Path-Example1/t/02_Module-Build-SysPath.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::More 'no_plan';
#use Test::More tests => 10;
use Test::Differences;
use FindBin qw($Bin);
use lib File::Spec->catdir($Bin, 'lib');
use lib File::Spec->catdir($Bin, '..', 'lib');
BEGIN {
use_ok ( 'Module::Build::SysPath' ) or exit;
}
exit main();
( run in 0.210 second using v1.01-cache-2.11-cpan-131fc08a04b )