Acme-ComeFrom

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN


[Changes for 0.10 - 2007-10-14]

* LICENSING CHANGE: This compilation and all individual files in it
  are now under the permissive "MIT" license.

* Line numbers are now preserved after filtering.

* The unit test no longer breaks under recent versions of Filter::Simple.

* Tidied up source code, test files, and this changelog.

[Changes for 0.07 - 2003-11-08]

* Switch build infrastructure to Module::Install.

inc/Test/Builder.pm  view on Meta::CPAN


    $self->output(\*TESTOUT);
    $self->failure_output(\*TESTERR);
    $self->todo_output(\*TESTOUT);
}


my $Opened_Testhandles = 0;
sub _open_testhandles {
    return if $Opened_Testhandles;
    # We dup STDOUT and STDERR so people can change them in their
    # test suites while still getting normal test output.
    open(TESTOUT, ">&STDOUT") or die "Can't dup STDOUT:  $!";
    open(TESTERR, ">&STDERR") or die "Can't dup STDERR:  $!";
    $Opened_Testhandles = 1;
}


#line 1396

sub _message_at_caller {

inc/Test/Builder.pm  view on Meta::CPAN

}

#line 1444

sub current_test {
    my($self, $num) = @_;

    lock($self->{Curr_Test});
    if( defined $num ) {
        unless( $self->{Have_Plan} ) {
            $self->croak("Can't change the current test number without a plan!");
        }

        $self->{Curr_Test} = $num;

        # If the test counter is being pushed forward fill in the details.
        my $test_results = $self->{Test_Results};
        if( $num > @$test_results ) {
            my $start = @$test_results ? @$test_results : 0;
            for ($start..$num-1) {
                $test_results->[$_] = &share({



( run in 0.412 second using v1.01-cache-2.11-cpan-5dc5da66d9d )