File: version.t

package info (click to toggle)
libtext-trac-perl 0.24-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 712 kB
  • sloc: perl: 1,462; makefile: 10
file content (14 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use strict;
use warnings;

use Test::More;
## no critic
eval q{use Test::Version 1.003001 qw( version_all_ok ), {
                is_strict   => 0,
                has_version => 1,
        };
};
plan skip_all => 'Test::Version 1.003001 required for testing version numbers' if $@;
version_all_ok();
done_testing;