Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
test for RT #77914, .reverse shoudl flatten parcels
Also removes some non-informative Pod
  • Loading branch information
moritz committed Sep 18, 2010
1 parent 5b48fa0 commit 280ebde
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions S32-list/reverse.t
Expand Up @@ -3,13 +3,7 @@ use Test;

# L<S32::Containers/List/"=item reverse">

=begin pod
Basic test for the reverse() builtin with a string (Str).
=end pod

plan 21;
plan 22;



Expand Down Expand Up @@ -104,4 +98,9 @@ is(@a, @e, "list was reversed");
is(@a[1], "foo", 'in place reversal works');
}

# RT #77914
{
is (<a b>, <c d>).reverse.join, 'dcba', '.reverse flattens parcels';
}

# vim: ft=perl6

0 comments on commit 280ebde

Please sign in to comment.