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

BEGIN {
    chdir 't' if -d 't';
    unshift @INC, '../lib';
}

BEGIN {
	$ENV{FOO} = "foo";
	$ENV{BAR} = "bar";
}

use Env qw(FOO $BAR);

$FOO .= "/bar";
$BAR .= "/baz";

print "1..2\n";

print "not " if $FOO ne 'foo/bar';
print "ok 1\n";

print "not " if $BAR ne 'bar/baz';
print "ok 2\n";