Skip to content

Instantly share code, notes, and snippets.

@bbkr
Created September 7, 2015 18:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbkr/78ca580add7ef9beacf0 to your computer and use it in GitHub Desktop.
Save bbkr/78ca580add7ef9beacf0 to your computer and use it in GitHub Desktop.
Running Perl 6 test from Perl 5
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