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

NAME

Modulino::Test - A demonstration of module ideas

SYNOPSIS

This module isn't meant for use. It's an example of the modulino idea with an additional branch to recognize test situations then run as a test file.

DESCRIPTION

run

Testing

test

Run all of the subroutines that start with _test_. Each subroutine is wrapped in a Test::More subtest.

sub _test_doc { require Test::More; require Test::Pod; require Test::Pod::Coverage; our $TODO;

        Test::Pod::pod_file_ok( __FILE__ );
        TODO: {
                local $TODO = "Pod::Coverage can't find the pod";
                Test::Pod::Coverage::pod_coverage_ok( __PACKAGE__ );
                }
        }

TO DO

SEE ALSO

SOURCE AVAILABILITY

This source is in Github:

        https://github.com/briandfoy/modulino-demo/

AUTHOR

brian d foy, <briandfoy@pobox.com>

COPYRIGHT AND LICENSE

Copyright © 2013-2024, brian d foy <briandfoy@pobox.com>. All rights reserved.

You may redistribute this under the terms of the Artistic License 2.0.