Skip to content

Commit

Permalink
[t/spec] unfudge passing split :all tests, colomon++
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.pugscode.org/pugs@30499 c213334d-75ef-0310-aa23-eaa082d1ae64
  • Loading branch information
moritz committed Apr 29, 2010
1 parent 0c9a19f commit 4b43cea
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion S02-builtin_data_types/lists.t
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ plan *;
diag $!;
ok "$!" ~~ /Seq|Parcel/, 'error message contains name of class';

#?rakudo emit #
augment class List { method rt62836_x { 62836 } };
#?rakudo skip 'unskip when "augment" works'
is <1 2 3>.rt62836_x, 62836, 'call user-declared method in List:: class';
Expand Down
1 change: 0 additions & 1 deletion S32-str/split-simple2.t
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ is 'abc'.split('', 3).Str, "a b c", 'split into characters respects limit (2)';
{
my @split = 'abc def ghi'.split(/(\s+)/, :all);
ok @split.elems == 5, q{split returns captured delimiter} ;
#?rakudo 2 todo 'Broken in ng1'
ok @split[1] eq ' ', q{split captured single space};
ok @split[3] eq ' ', q{split captured multiple spaces};
}
Expand Down

0 comments on commit 4b43cea

Please sign in to comment.