Skip to content

Instantly share code, notes, and snippets.

@stmuk
Created August 11, 2013 13:17
Show Gist options
  • Save stmuk/6204857 to your computer and use it in GitHub Desktop.
Save stmuk/6204857 to your computer and use it in GitHub Desktop.
use v6;
BEGIN @*INC.push: 't/spec/S02-magicals/';
use UsedEnv;
env_exists();
module UsedEnv {
use Test;
plan 1;
sub env_exists is export {
ok %*ENV.exists('PATH'), "env exists in use (RT #78258)";
done;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment