Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
These tests pass, unfudge them.
Also track deprecation warning
  • Loading branch information
coke committed Mar 31, 2015
1 parent 74bd2ec commit e20a16b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions S32-io/io-handle.t
Expand Up @@ -13,11 +13,9 @@ my $path = "io-handle-testfile";
my $fh = $path.IO.open(:w);
$fh.print("42");
}
#?rakudo todo "doesn't flush"
is slurp($path), "42", "buffer is flushed when IO goes out of scope";
}

#?rakudo todo "doesn't flush"
#?niecza skip "Unable to resolve method open in type IO"
{
$path.IO.open(:w).print("24");
Expand All @@ -30,7 +28,7 @@ my $path = "io-handle-testfile";
$path.IO.open(:w).print("A+B+C+D+");
}
my $RT123888 = $path.IO.open(:r);
$RT123888.input-line-separator = "+";
$RT123888.nl= "+";
is $RT123888.lines, <A+ B+ C+ D+>, "Changing input-line-separator works for .lines";
}

Expand Down

0 comments on commit e20a16b

Please sign in to comment.