Skip to content

Commit

Permalink
Remove superfluous .IO's
Browse files Browse the repository at this point in the history
We already have an IO::Pathy object
  • Loading branch information
lizmat committed May 19, 2020
1 parent b69a1ab commit 0990abc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions S32-io/io-path.t
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ subtest '.raku.EVAL rountrips' => {
if .DEFINITE {
subtest "using {.raku}" => {
plan 4;
is-path .IO.raku.EVAL, .IO, 'equivalent object';
is-deeply .IO.raku.EVAL.path, .IO.path, 'same .path';
is-deeply .IO.raku.EVAL.CWD, .IO.CWD, 'same .CWD';
is-deeply .IO.raku.EVAL.SPEC, .IO.SPEC, 'same .SPEC';
is-path .raku.EVAL, $_, 'equivalent object';
is-deeply .raku.EVAL.path, .path, 'same .path';
is-deeply .raku.EVAL.CWD, .CWD, 'same .CWD';
is-deeply .raku.EVAL.SPEC, .SPEC, 'same .SPEC';
}
}
else {
is-deeply .IO.raku.EVAL, .IO, "new eqv old using {.raku}";
is-deeply .raku.EVAL, $_, "new eqv old using {.raku}";
}
}
}
Expand Down

0 comments on commit 0990abc

Please sign in to comment.