Help for this page
#!/usr/bin/perl use strict; ... sub make_fun_of { "I think @_ is funny." }
use Test::Simple 'no_plan'; require './bin/script'; # ????? for (qw/james cindy susan rob/){ ok( make_fun_of($_) ); }