Josef Moravec
472c576513
These two routines are not used Test plan: 0) Apply the patch 1) git grep GetLogStatus should return no occurence 2) git grep displaylog should return no occurence 3) prove t/Log.t should return green Signed-off-by: Pierre-Marc Thibault <pierre-marc.thibault@inLibro.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
13 lines
162 B
Perl
Executable file
13 lines
162 B
Perl
Executable file
#!/usr/bin/perl
|
|
#
|
|
# This Koha test module is a stub!
|
|
# Add more tests here!!!
|
|
|
|
use Modern::Perl;
|
|
|
|
use Test::More tests => 1;
|
|
|
|
BEGIN {
|
|
use_ok('C4::Log');
|
|
}
|
|
|