DBIx-HTML-LinkedMenus
view release on metacpan or search on metacpan
t/00.versions.t view on Meta::CPAN
#/usr/bin/env perl
use strict;
use warnings;
# I tried 'require'-ing modules but that did not work.
use DBIx::HTML::LinkedMenus; # For the version #.
use Test::More;
use strict;
use warnings;
# ----------------------
pass('All external modules loaded');
my(@modules) = qw
/
strict
warnings
/;
diag "Testing DBIx::HTML::LinkedMenus V $DBIx::HTML::LinkedMenus::VERSION";
for my $module (@modules)
{
no strict 'refs';
my($ver) = ${$module . '::VERSION'} || 'N/A';
diag "Using $module V $ver";
}
done_testing;
( run in 2.486 seconds using v1.01-cache-2.11-cpan-140bd7fdf52 )