File: 00_compile_scripts.t

package info (click to toggle)
boxer 1.4.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,236 kB
  • sloc: perl: 2,063; sh: 22; makefile: 5
file content (16 lines) | stat: -rw-r--r-- 251 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl

use v5.14;
use utf8;

use Test::More;

use strictures 2;
no warnings "experimental::signatures";

eval "use Test::Compile";
Test::More->builder->BAIL_OUT(
	"Test::Compile required for testing compilation")
	if $@;

all_pl_files_ok();