summaryrefslogtreecommitdiffstats
path: root/contrib/perl5/t/lib/env.t
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/perl5/t/lib/env.t')
-rwxr-xr-xcontrib/perl5/t/lib/env.t25
1 files changed, 0 insertions, 25 deletions
diff --git a/contrib/perl5/t/lib/env.t b/contrib/perl5/t/lib/env.t
deleted file mode 100755
index ff6af2e..0000000
--- a/contrib/perl5/t/lib/env.t
+++ /dev/null
@@ -1,25 +0,0 @@
-#!./perl
-
-BEGIN {
- chdir 't' if -d 't';
- @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";
-
OpenPOWER on IntegriCloud