@@ -, +, @@ --- t/AuthoritiesMarc_MARC21.t | 14 ++++++++++++++ t/AuthoritiesMarc_UNIMARC.t | 14 ++++++++++++++ t/Barcodes_annual.t | 14 ++++++++++++++ t/Barcodes_hbyymmincr.t | 14 ++++++++++++++ t/Barcodes_incremental.t | 14 ++++++++++++++ t/Cache_FastMemcached.t | 14 ++++++++++++++ t/Cache_Memcached.t | 14 ++++++++++++++ t/Cache_Memoize_Memcached.t | 14 ++++++++++++++ t/ClassSortRoutine_Dewey.t | 14 ++++++++++++++ t/ClassSortRoutine_Generic.t | 14 ++++++++++++++ t/ClassSortRoutine_LCC.t | 14 ++++++++++++++ t/External_BakerTaylor.t | 14 ++++++++++++++ t/External_Syndetics.t | 14 ++++++++++++++ t/Form_MessagingPreferences.t | 14 ++++++++++++++ t/Heading_MARC21.t | 14 ++++++++++++++ t/ILSDI_Services.t | 14 ++++++++++++++ t/ILSDI_Utility.t | 14 ++++++++++++++ t/Installer_PerlDependencies.t | 14 ++++++++++++++ t/Installer_PerlModules.t | 14 ++++++++++++++ t/Members_AttributeTypes.t | 14 ++++++++++++++ t/Members_Messaging.t | 14 ++++++++++++++ t/Output_JSONStream.t | 14 ++++++++++++++ t/Patroncards_Batch.t | 14 ++++++++++++++ t/Patroncards_Layout.t | 14 ++++++++++++++ t/Patroncards_Lib.t | 14 ++++++++++++++ t/Patroncards_Patroncard.t | 14 ++++++++++++++ t/Patroncards_Profile.t | 14 ++++++++++++++ t/Patroncards_Template.t | 14 ++++++++++++++ t/Reports_Guided.t | 14 ++++++++++++++ t/SIP_ILS.t | 14 ++++++++++++++ t/SIP_SIPServer.t | 14 ++++++++++++++ t/SIP_Sip.t | 14 ++++++++++++++ t/Search_PazPar2.t | 14 ++++++++++++++ t/VirtualShelves_Merge.t | 14 ++++++++++++++ t/VirtualShelves_Page.t | 14 ++++++++++++++ 35 files changed, 490 insertions(+), 0 deletions(-) create mode 100755 t/AuthoritiesMarc_MARC21.t create mode 100755 t/AuthoritiesMarc_UNIMARC.t create mode 100755 t/Barcodes_annual.t create mode 100755 t/Barcodes_hbyymmincr.t create mode 100755 t/Barcodes_incremental.t create mode 100755 t/Cache_FastMemcached.t create mode 100755 t/Cache_Memcached.t create mode 100755 t/Cache_Memoize_Memcached.t create mode 100755 t/ClassSortRoutine_Dewey.t create mode 100755 t/ClassSortRoutine_Generic.t create mode 100755 t/ClassSortRoutine_LCC.t create mode 100755 t/External_BakerTaylor.t create mode 100755 t/External_Syndetics.t create mode 100755 t/Form_MessagingPreferences.t create mode 100755 t/Heading_MARC21.t create mode 100755 t/ILSDI_Services.t create mode 100755 t/ILSDI_Utility.t create mode 100755 t/Installer_PerlDependencies.t create mode 100755 t/Installer_PerlModules.t create mode 100755 t/Members_AttributeTypes.t create mode 100755 t/Members_Messaging.t create mode 100755 t/Output_JSONStream.t create mode 100755 t/Patroncards_Batch.t create mode 100755 t/Patroncards_Layout.t create mode 100755 t/Patroncards_Lib.t create mode 100755 t/Patroncards_Patroncard.t create mode 100755 t/Patroncards_Profile.t create mode 100755 t/Patroncards_Template.t create mode 100755 t/Reports_Guided.t create mode 100755 t/SIP_ILS.t create mode 100755 t/SIP_SIPServer.t create mode 100755 t/SIP_Sip.t create mode 100755 t/Search_PazPar2.t create mode 100755 t/VirtualShelves_Merge.t create mode 100755 t/VirtualShelves_Page.t --- a/t/AuthoritiesMarc_MARC21.t +++ a/t/AuthoritiesMarc_MARC21.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::AuthoritiesMarc::MARC21'); +} + --- a/t/AuthoritiesMarc_UNIMARC.t +++ a/t/AuthoritiesMarc_UNIMARC.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::AuthoritiesMarc::UNIMARC'); +} + --- a/t/Barcodes_annual.t +++ a/t/Barcodes_annual.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::Barcodes::annual'); +} + --- a/t/Barcodes_hbyymmincr.t +++ a/t/Barcodes_hbyymmincr.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::Barcodes::hbyymmincr'); +} + --- a/t/Barcodes_incremental.t +++ a/t/Barcodes_incremental.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::Barcodes::incremental'); +} + --- a/t/Cache_FastMemcached.t +++ a/t/Cache_FastMemcached.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::FastMemcached'); +} + --- a/t/Cache_Memcached.t +++ a/t/Cache_Memcached.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::Memcached'); +} + --- a/t/Cache_Memoize_Memcached.t +++ a/t/Cache_Memoize_Memcached.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::Memoize::Memcached'); +} + --- a/t/ClassSortRoutine_Dewey.t +++ a/t/ClassSortRoutine_Dewey.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::ClassSortRoutine::Dewey'); +} + --- a/t/ClassSortRoutine_Generic.t +++ a/t/ClassSortRoutine_Generic.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::ClassSortRoutine::Generic'); +} + --- a/t/ClassSortRoutine_LCC.t +++ a/t/ClassSortRoutine_LCC.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::ClassSortRoutine::LCC'); +} + --- a/t/External_BakerTaylor.t +++ a/t/External_BakerTaylor.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::External::BakerTaylor'); +} + --- a/t/External_Syndetics.t +++ a/t/External_Syndetics.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::External::Syndetics'); +} + --- a/t/Form_MessagingPreferences.t +++ a/t/Form_MessagingPreferences.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::Form::MessagingPreferences'); +} + --- a/t/Heading_MARC21.t +++ a/t/Heading_MARC21.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::External::Amazon'); +} + --- a/t/ILSDI_Services.t +++ a/t/ILSDI_Services.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::ILSDI::Services'); +} + --- a/t/ILSDI_Utility.t +++ a/t/ILSDI_Utility.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::ILSDI::Utility'); +} + --- a/t/Installer_PerlDependencies.t +++ a/t/Installer_PerlDependencies.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::Installer::PerlDependencies'); +} + --- a/t/Installer_PerlModules.t +++ a/t/Installer_PerlModules.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::Installer::PerlModules'); +} + --- a/t/Members_AttributeTypes.t +++ a/t/Members_AttributeTypes.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::Members::AttributeTypes'); +} + --- a/t/Members_Messaging.t +++ a/t/Members_Messaging.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::Members::Messaging'); +} + --- a/t/Output_JSONStream.t +++ a/t/Output_JSONStream.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::Output::JSONStream'); +} + --- a/t/Patroncards_Batch.t +++ a/t/Patroncards_Batch.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::Patroncards::Batch'); +} + --- a/t/Patroncards_Layout.t +++ a/t/Patroncards_Layout.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::Patroncards::Layout'); +} + --- a/t/Patroncards_Lib.t +++ a/t/Patroncards_Lib.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::Patroncards::Lib'); +} + --- a/t/Patroncards_Patroncard.t +++ a/t/Patroncards_Patroncard.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::Patroncards::Patroncard'); +} + --- a/t/Patroncards_Profile.t +++ a/t/Patroncards_Profile.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::Patroncards::Profile'); +} + --- a/t/Patroncards_Template.t +++ a/t/Patroncards_Template.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::Patroncards::Template'); +} + --- a/t/Reports_Guided.t +++ a/t/Reports_Guided.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::Reports::Guided'); +} + --- a/t/SIP_ILS.t +++ a/t/SIP_ILS.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::SIP::ILS'); +} + --- a/t/SIP_SIPServer.t +++ a/t/SIP_SIPServer.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::SIP::SIPServer'); +} + --- a/t/SIP_Sip.t +++ a/t/SIP_Sip.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::SIP::Sip'); +} + --- a/t/Search_PazPar2.t +++ a/t/Search_PazPar2.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::Search::PazPar2'); +} + --- a/t/VirtualShelves_Merge.t +++ a/t/VirtualShelves_Merge.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::VirtualShelves::Merge'); +} + --- a/t/VirtualShelves_Page.t +++ a/t/VirtualShelves_Page.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::VirtualShelves::Page'); +} + --