Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Change rakudo todos to niecza todos.
Because Rakudo can run them now, and Niecza is getting IO::Path but cannot run them yet.
  • Loading branch information
colomon committed Jun 3, 2013
1 parent a0cc4c2 commit d3f8d74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S32-io/io-path.t
Expand Up @@ -10,10 +10,10 @@ isa_ok $path, IO::Path, "Str.path returns an IO::Path";
is $path.volume, '', 'volume';
is $path.directory, '/foo', 'directory';
is $path.basename, 'bar.txt', 'basename';
#?rakudo 2 skip '.parent NYI'
#?niecza 2 skip '.parent NYI'
is $path.parent, '/foo', 'parent';
is $path.parent.parent, '/', 'parent of parent';
#?rakudo 2 skip '.is-absolute, .is-relative NYI'
#?niecza 2 skip '.is-absolute, .is-relative NYI'
is $path.is-absolute, True, 'is-absolute';
is $path.is-relative, False, 'is-relative';

Expand Down

0 comments on commit d3f8d74

Please sign in to comment.