From 88acebeebefd2da9eba6ae222bc96ac0de5c601e Mon Sep 17 00:00:00 2001 From: Nicole Engard Date: Fri, 29 Oct 2010 23:41:25 -0400 Subject: [PATCH] create unit test files Signed-off-by: Galen Charlton Signed-off-by: Chris Cormack --- t/Cache.t | 14 ++++++++++++++ t/Review.t | 1 + t/Scheduler.t | 14 ++++++++++++++ 3 files changed, 29 insertions(+) create mode 100644 t/Cache.t create mode 100644 t/Scheduler.t diff --git a/t/Cache.t b/t/Cache.t new file mode 100644 index 0000000000..75f5acf7b4 --- /dev/null +++ b/t/Cache.t @@ -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'); +} + diff --git a/t/Review.t b/t/Review.t index 40e650ff5a..90323bcd52 100755 --- a/t/Review.t +++ b/t/Review.t @@ -1,5 +1,6 @@ #!/usr/bin/perl # +# # This Koha test module is a stub! # Add more tests here!!! diff --git a/t/Scheduler.t b/t/Scheduler.t new file mode 100644 index 0000000000..5fd05b3872 --- /dev/null +++ b/t/Scheduler.t @@ -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'); +} + -- 2.39.2