File: basic.t

package info (click to toggle)
libtest-minimumversion-perl 0.101080-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 120 kB
  • ctags: 6
  • sloc: perl: 103; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 341 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use strict;
use warnings;

use Test::Tester;
use Test::More tests => 8;
use Test::MinimumVersion;

minimum_version_ok('t/eg/5.6-warnings.pl', '5.006');

check_test(
  sub {
    minimum_version_ok('t/eg/5.6-warnings.pl', '5.006');
  },
  {
    ok   => 1,
    name => 't/eg/5.6-warnings.pl',
    diag => '',
  },
  "successful comparison"
);