File: 00-load.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 (17 lines) | stat: -rw-r--r-- 265 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!perl

use 5.008001;

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

use Test::More;
use Moo;

BEGIN {
    use_ok( 'MooX::ConfigFromFile' ) || print "Bail out!\n";
}

diag( "Testing MooX::ConfigFromFile $MooX::ConfigFromFile::VERSION, Perl $], $^X" );

done_testing();