Created
September 7, 2015 18:32
-
-
Save bbkr/78ca580add7ef9beacf0 to your computer and use it in GitHub Desktop.
Running Perl 6 test from Perl 5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
my $parser = TAP::Parser->new( { "exec" => [ 'perl6', $FindBin::Bin . '/api/' . $method . '.t' ] } ); | |
while ( my $result = $parser->next ) { | |
next unless $result->is_test; | |
ok $result->is_ok, $result->description; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment