#!/usr/bin/perl use warnings; use strict; do "tests.pl"; sub foo { "foo" } #### use Test::Simple tests => 1; ok( foo() eq 'foo' ); exit;