The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -w

use Test;
plan tests => 5;

use mylib qw($Prefix $Bin $Lib $Etc);
use Foo;

ok($Foo::VERSION);
ok($Prefix);
ok("$Prefix/lib", $Lib);
ok("$Prefix/etc", $Etc);
ok($Bin);