Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
start lines with test verbs for fudging
  • Loading branch information
coke committed Sep 4, 2013
1 parent dd0e0b5 commit a01bfab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion S05-substitution/subst.t
Expand Up @@ -420,7 +420,8 @@ is '12'.subst(/(.)(.)/,{$()*2}),'24', '.. and do nifty things in closures';
use lib "t/spec/packages";
use Test::Util;

$_ = "foo"; s[f] = 'bar'; is $_, "baroo", 's[f] is parsed as a substitution op';
$_ = "foo"; s[f] = 'bar';
is $_, "baroo", 's[f] is parsed as a substitution op';
throws_like q{$_ = "foo"; s[] = "bar";}, X::Syntax::Regex::NullRegex;
}

Expand Down

0 comments on commit a01bfab

Please sign in to comment.