diff options
author | Jacob Pipkin <d4wnr4z0r@yahoo.com> | 2012-05-08 00:44:49 -0500 |
---|---|---|
committer | Jacob Pipkin <d4wnr4z0r@yahoo.com> | 2012-05-08 00:44:49 -0500 |
commit | b7afd023a8e5ff86f751196984ba87dcb9d451cd (patch) | |
tree | 0e6add668d896be591972c4e7fb2a02b31488770 /SBO-Lib/t | |
download | sbotools2-b7afd023a8e5ff86f751196984ba87dcb9d451cd.tar.xz |
initial repo add
Diffstat (limited to 'SBO-Lib/t')
-rw-r--r-- | SBO-Lib/t/SBO-Lib.t | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/SBO-Lib/t/SBO-Lib.t b/SBO-Lib/t/SBO-Lib.t new file mode 100644 index 0000000..1c5866b --- /dev/null +++ b/SBO-Lib/t/SBO-Lib.t @@ -0,0 +1,18 @@ +# Before `make install' is performed this script should be runnable with +# `make test'. After `make install' it should work as `perl SBO-Lib.t' + +######################### + +# change 'tests => 1' to 'tests => last_test_to_print'; + +use strict; +use warnings; + +use Test::More tests => 1; +BEGIN { use_ok('SBO::Lib') }; + +######################### + +# Insert your test code below, the Test::More module is use()ed here so read +# its man page ( perldoc Test::More ) for help writing this test script. + |