File: RequireDateTime.pm

package info (click to toggle)
libdatetime-timezone-perl 1%3A2.47-1%2B2023d
  • links: PTS, VCS
  • area: main
  • in suites: bullseye-updates
  • size: 97,508 kB
  • sloc: perl: 2,688; sh: 36; makefile: 10
file content (18 lines) | stat: -rw-r--r-- 335 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package T::RequireDateTime;

use strict;
use warnings;

use Test::More 0.96;

my $dt_version = '0.1501';

sub import {
    ## no critic (BuiltinFunctions::ProhibitStringyEval)
    return if eval "use DateTime $dt_version; 1;" && !$@;

    plan skip_all =>
        "Cannot run tests before DateTime.pm $dt_version is installed.";
}

1;