File: 02-moose.t

package info (click to toggle)
libmoox-configfromfile-perl 0.007-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 220 kB
  • ctags: 68
  • sloc: perl: 637; makefile: 19
file content (23 lines) | stat: -rw-r--r-- 490 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
22
23
#!perl

use 5.008001;

use strict;
use warnings FATAL => 'all';

use Test::More;

BEGIN {
    eval "use Moose;";
    $@ and plan skip_all => "Moose test requires Moose being installed";
}

our $OO = "Moose";
$ENV{WHICH_MOODEL} = "Moose";

eval "do 't/testerr.pm'";
eval "do 't/testlib.pm'";
eval "use MooX::Cmd 0.012; do 't/testmxcmd.pm'";
eval "{package MooX::ConfigFromFile::Test::Availability::Of::MooX::Options; use $OO; use MooX::Options 4.001; }; do 't/testmxopt.pm'";

done_testing;