#!/usr/bin/perl # Compile testing for JavaScript::Librarian use strict; BEGIN { $| = 1; $^W = 1; } use Test::More tests => 4; # Check their perl version ok( $] >= 5.005, "Your perl is new enough" ); # Does the module load use_ok('JavaScript::Librarian' ); use_ok('JavaScript::Librarian::Library' ); use_ok('JavaScript::Librarian::Book' ); exit(0);