Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
make sure that %*ENV .gist and .perl work.
  • Loading branch information
timo committed Feb 28, 2013
1 parent 7d2d272 commit ee4707d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion S02-magicals/env.t
Expand Up @@ -6,7 +6,7 @@ use Test;
BEGIN @*INC.push: 't/spec/packages/';
use Test::Util;
# L<S28/Named variables>
plan 14;
plan 16;

if $*OS eq "browser" {
skip_rest "Programs running in browsers don't have access to regular IO.";
Expand Down Expand Up @@ -99,4 +99,10 @@ eval_dies_ok("%ENV", '%ENV not visible by default');
'ENV members persist to child processes';
}

# RT #77458
{
ok %*ENV.gist ~~ /\)\.hash$/, '%*ENV.gist works';
ok %*ENV.perl ~~ /\)\.hash$/, '%*ENV.perl works';
}

# vim: ft=perl6

0 comments on commit ee4707d

Please sign in to comment.