summaryrefslogtreecommitdiff
path: root/t/01_compile.t
blob: 54e7bef0c8a20a64b6c026d9b9ad231ec5682be5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/perl

# Compile testing

use strict;
BEGIN {
	$|  = 1;
	$^W = 1;
}

use Test::More tests => 2;

# Load-test Task::Weaken (what the hell)
use_ok( 'Task::Weaken' );

# Load Scalar::Util
use_ok( 'Scalar::Util' );