#!/usr/bin/perl # File test: use warnings; use strict; use lib '/path/to/my/lib_dir/'; use Carp qw/ croak confess /; use IsHTMLEmpty; confess "isHTMLEmpty isn't defined. I'm sorry.\n" unless defined &isHTMLEmpty; confess "Sorry, this HTML can generate content.\n" unless isHTMLEmpty './test.html'; print "Ok.\n" if isHTMLEmpty './test.html'; __END__