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

use Test::Class::Moose;

sub test_beta_first {
    my $test = shift;
    ok 1;
    sleep 1;
    ok 2;
    sleep 1;
}

sub test_second {
    my $test = shift;
    ok 1;
    sleep 1;
    ok 2;
    sleep 1;
}

1