###################################################################### # Test suite for Foo::Bar # by Mike Schilli ###################################################################### use warnings; use strict; use Test::More qw(no_plan); BEGIN { use_ok('Foo::Bar') }; ok(1); like("123", qr/^\d+$/);