The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/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' );