/usr/bin/test_version is in libtest-hasversion-perl 0.012-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/usr/bin/perl
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if 0; # not running under some shell
use strict;
use warnings;
use Test::HasVersion; our $VERSION = $Test::HasVersion::VERSION;
all_pm_version_ok(@ARGV);
=head1 NAME
test_version - check that all Perl modules in a distribution have version numbers
=head1 DESCRIPTION
This script runs the Test::HasVersion tests on the distribution in the
current directory. Test::HasVersion can also be used like normal
tests, see the Test::HasVersion man page for how to do that.
=cut
|