The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Parrot::Test::Perl6 -- testing routines for languages/perl6

SYNOPSIS

    use Parrot::Test::Perl6 tests => 3;

    perl6_output_is(<<'CODE', <<'OUTPUT', 'hello, world!');
    say 'hello, world!';
    CODE
    hello, world!
    OUTPUT

    perl6_stderr_like($code, qr/$expected/, $desc);

    perl6_stdout_isnt($code, qr/$expected/, $desc);

DESCRIPTION

This module provides Perl6 test functions. It has been heavily refactored from Parrot::Test. Hopefully,similar refactoring will be carried out in Parrot::Test someday soon.