Fennec::Listener::TB2 - Listener for Test::Builder2


Fennec documentation Contained in the Fennec distribution.

Index


Code Index:

NAME

Top

Fennec::Listener::TB2 - Listener for Test::Builder2

API STABILITY

Top

Fennec versions below 1.000 were considered experimental, and the API was subject to change. As of version 1.0 the API is considered stabalized. New versions may add functionality, but not remove or significantly alter existing functionality.

AUTHORS

Top

Chad Granum exodist7@gmail.com

COPYRIGHT

Top


Fennec documentation Contained in the Fennec distribution.

package Fennec::Listener::TB2;
use strict;
use warnings;

use base 'Fennec::Listener::TB';

use Test::Builder2;

my $tb = Test::Builder2->singleton;
$tb->formatter->show_tap_version(0);

1;

__END__