App-Filite-Client
view release on metacpan or search on metacpan
t/00start.t view on Meta::CPAN
=pod
=encoding utf-8
=head1 PURPOSE
Print version numbers, etc.
=head1 AUTHOR
Toby Inkster E<lt>tobyink@cpan.orgE<gt>.
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2023 by Toby Inkster.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
use Test2::V0;
my @modules = qw(
Carp
Class::Tiny
File::XDG
Getopt::Long
HTTP::Tiny
HTTP::Tiny::Multipart
JSON::PP
MIME::Base64
Path::Tiny
namespace::autoclean
Test2::V0
);
diag "\n####";
for my $mod ( sort @modules ) {
eval "require $mod;";
diag sprintf( '%-20s %s', $mod, $mod->VERSION );
}
diag "####";
pass;
done_testing;
( run in 0.550 second using v1.01-cache-2.11-cpan-39bf76dae61 )