#!/usr/bin/perl # Formal testing for Test::ClassAPI use strict; BEGIN { $| = 1; $^W = 1; } use Test::More tests => 2; ok( $] >= 5.006, "Your perl is new enough" ); use_ok( 'Test::ClassAPI' );