You are viewing the version of this documentation from Perl 5.26.1. View the latest version

CONTENTS

NAME

Test::Builder::Module - Base class for test modules

SYNOPSIS

# Emulates Test::Simple
package Your::Module;

my $CLASS = __PACKAGE__;

use parent 'Test::Builder::Module';
@EXPORT = qw(ok);

sub ok ($;$) {
    my $tb = $CLASS->builder;
    return $tb->ok(@_);
}

1;