File: 99_pmv.t

package info (click to toggle)
libparams-util-perl 0.30-1.1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 264 kB
  • ctags: 114
  • sloc: perl: 2,027; makefile: 42
file content (22 lines) | stat: -rw-r--r-- 424 bytes parent folder | download | duplicates (22)
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

use strict;
BEGIN {
	$|  = 1;
	$^W = 1;
}
use Test::More;

# Skip if doing a regular install
unless ( $ENV{AUTOMATED_TESTING} ) {
	plan( skip_all => "Author tests not required for installation" );
}

# Can we run the version tests
eval "use Test::MinimumVersion 0.007;";
if ( $@ ) {
	plan( skip_all => "Test::MinimumVersion not available" );
}

# Test minimum version
all_minimum_version_from_metayml_ok();