#!/usr/bin/perl -w use strict; # Test the non-construction-order-specific aspects of of the test class use FindBin; use lib $FindBin::Bin . '/testmodules'; use TestCode::PlainObject; use Test::More tests => 1+TestCode::PlainObject->num_tests(); BEGIN { use_ok( 'Simple' ); } TestCode::PlainObject->test_plain('Simple');