The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

#!perl -T
use strict;
# always test these modules can load
my @modules = qw(
WebFetch::Output::TT
);
# count tests
plan tests => int(@modules);
# test loading modules
foreach my $mod (@modules) {
use_ok($mod);
}
require WebFetch;
diag( "Testing WebFetch::Output::TT $WebFetch::Output::TT::VERSION, Perl $], $^X" );