create unit test files

Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
Nicole Engard 2010-10-29 23:41:25 -04:00 committed by Chris Cormack
parent 12f9aa973d
commit 88acebeebe
3 changed files with 29 additions and 0 deletions

14
t/Cache.t Normal file
View file

@ -0,0 +1,14 @@
#!/usr/bin/perl
#
# This Koha test module is a stub!
# Add more tests here!!!
use strict;
use warnings;
use Test::More tests => 1;
BEGIN {
use_ok('C4::Cache');
}

View file

@ -1,5 +1,6 @@
#!/usr/bin/perl
#
#
# This Koha test module is a stub!
# Add more tests here!!!

14
t/Scheduler.t Normal file
View file

@ -0,0 +1,14 @@
#!/usr/bin/perl
#
# This Koha test module is a stub!
# Add more tests here!!!
use strict;
use warnings;
use Test::More tests => 1;
BEGIN {
use_ok('C4::Scheduler');
}