From d9adf8154fb4ae1a443dc149b4516b9922e89457 Mon Sep 17 00:00:00 2001 From: pate Date: Fri, 31 May 2002 20:35:54 +0000 Subject: [PATCH] updated testing --- t/koha.t | 14 ++++++++++++++ testKoha.pl | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 t/koha.t diff --git a/t/koha.t b/t/koha.t new file mode 100644 index 0000000000..b0b7e925c0 --- /dev/null +++ b/t/koha.t @@ -0,0 +1,14 @@ +BEGIN { $| = 1; print "1..2\n"; } +END {print "not ok 1\n" unless $loaded;} +use C4::Koha; +$loaded = 1; +print "ok 1\n"; + +$date = "01/01/2002"; +$newdate = &slashifyDate("2002-01-01"); + +if ($date eq $newdate) { + print "ok 2\n"; +} else { + print "not ok 2\n"; +} diff --git a/testKoha.pl b/testKoha.pl index 624bd820c5..30043a1f45 100644 --- a/testKoha.pl +++ b/testKoha.pl @@ -4,4 +4,4 @@ use strict; use Test::Harness; -runtests 'koha.t'; +runtests 't/koha.t'; -- 2.39.5