Skip to content

Commit

Permalink
Use explicit dot in extension
Browse files Browse the repository at this point in the history
Apparently the `--ext ...` option to prove really means `.ends-with(...)`
  • Loading branch information
ugexe committed Jan 18, 2019
1 parent c475e9b commit e1da41a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Zef/Service/Shell/prove.pm6
Expand Up @@ -35,7 +35,7 @@ class Zef::Service::Shell::prove does Tester does Messenger {

my $passed;
react {
my $proc = zrun-async('prove', '--ext', 't', '--ext', 't6', '-r', '-e', $*EXECUTABLE.absolute, $test-path.relative($path));
my $proc = zrun-async('prove', '--ext', '.t', '--ext', '.t6', '-r', '-e', $*EXECUTABLE.absolute, $test-path.relative($path));
whenever $proc.stdout.lines { $.stdout.emit($_) }
whenever $proc.stderr.lines { $.stderr.emit($_) }
whenever $proc.start(:%ENV, :cwd($path)) { $passed = $_.so }
Expand Down

0 comments on commit e1da41a

Please sign in to comment.