Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
reduce scope of TODO
some of these already pass
  • Loading branch information
coke committed Mar 31, 2015
1 parent 7e3870b commit 74bd2ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion S32-list/squish.t
Expand Up @@ -69,13 +69,14 @@ This test tests the C<squish> builtin and .squish method on Any/List.
} #4

#?niecza skip 'NYI'
#?rakudo todo 'RT #124204'
{
my @rt124204 = ('', '', Any, Any);
#?rakudo todo 'RT #124204'
is_deeply @rt124204.squish(:as(-> $x {$x})), ('', Any).list.item,
"method form of squish with :as does not needlessly stringify";
is_deeply @rt124204.squish, ('', Any).list.item,
"method form of squish without :as does not needlessly stringify";
#?rakudo todo 'RT #124204'
is_deeply @rt124204.squish(:as(-> $x {$x}), :with({$^b === $^a})), ('', Any).list.item,
"method form of squish with :as and :with does not needlessly stringify";
is_deeply @rt124204.squish(:with({$^b === $^a})), ('', Any).list.item,
Expand Down

0 comments on commit 74bd2ec

Please sign in to comment.