Skip to content

Commit

Permalink
[t/spec]: Fudge some Nil-related tests.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.pugscode.org/pugs@32058 c213334d-75ef-0310-aa23-eaa082d1ae64
  • Loading branch information
pmichaud committed Aug 19, 2010
1 parent feebd08 commit 3f55d2d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions S02-literals/string-interpolation.t
Expand Up @@ -26,6 +26,7 @@ plan *;
ok "{3}" ~~ Str, '"{3}" results in a Str';

# RT #76234
#?rakudo todo "RT 76234, Nil stringy interpolation"
is "{}", '', 'Interpolating an empty block is cool';
}

Expand Down
5 changes: 4 additions & 1 deletion S03-operators/context.t
Expand Up @@ -26,10 +26,13 @@ plan *;

# Test the only difference between @() and list()
is(list(), (), 'list() should return an empty list');
'foo' ~~ /oo/; # run a regex so we have $/ below
'foo' ~~ /(o)o/; # run a regex so we have $/ below
#?rakudo skip '@() not implemented'
is(@(), @($/), '@() should be the same as @($/)');
}

=begin END
# L<S03/List prefix precedence/The item contextualizer>
# L<S02/Lists/To force a non-flattening item context>
Expand Down

0 comments on commit 3f55d2d

Please sign in to comment.