Skip to content

Instantly share code, notes, and snippets.

@j1n3l0
Created June 28, 2012 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save j1n3l0/3011349 to your computer and use it in GitHub Desktop.
Save j1n3l0/3011349 to your computer and use it in GitHub Desktop.
use 5.014;
use Test::Most;
use FindBin '$Bin';
use lib "$Bin/lib";
use Bar;
pass 'hello';
done_testing;
package Bar;
use 5.014;
1;
$ prove -lrv t/
t/001_basics.t ..
ok 1 - hello
1..1
ok
All tests successful.
Files=1, Tests=1, 1 wallclock secs ( 0.02 usr 0.00 sys + 0.04 cusr 0.00 csys = 0.06 CPU)
Result: PASS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment