@@ -, +, @@ --- t/Auth_with_cas.t | 14 ++++++++++++++ t/AuthoritiesMarc.t | 14 ++++++++++++++ t/Biblio.t | 14 ++++++++++++++ t/Breeding.t | 14 ++++++++++++++ t/Category.t | 14 ++++++++++++++ t/ClassSortRoutine.t | 14 ++++++++++++++ t/ClassSource.t | 14 ++++++++++++++ t/Contract.t | 14 ++++++++++++++ t/Creators.t | 14 ++++++++++++++ t/Csv.t | 14 ++++++++++++++ t/Heading.t | 14 ++++++++++++++ t/ItemCirculationAlertPreference.t | 14 ++++++++++++++ t/Items.t | 14 ++++++++++++++ t/Letters.t | 14 ++++++++++++++ t/Log.t | 14 ++++++++++++++ t/Matcher.t | 14 ++++++++++++++ t/Members.t | 14 ++++++++++++++ t/Message.t | 14 ++++++++++++++ t/NewsChannels.t | 14 ++++++++++++++ t/Overdues.t | 14 ++++++++++++++ t/Patroncards.t | 14 ++++++++++++++ t/Print.t | 14 ++++++++++++++ t/Reports.t | 14 ++++++++++++++ t/Ris.t | 14 ++++++++++++++ t/RotatingCollections.t | 14 ++++++++++++++ t/SMS.t | 14 ++++++++++++++ t/Tags.t | 14 ++++++++++++++ t/UploadedFile.t | 14 ++++++++++++++ 28 files changed, 392 insertions(+), 0 deletions(-) create mode 100755 t/Auth_with_cas.t create mode 100755 t/AuthoritiesMarc.t create mode 100755 t/Biblio.t create mode 100755 t/Breeding.t create mode 100755 t/Category.t create mode 100755 t/ClassSortRoutine.t create mode 100755 t/ClassSource.t create mode 100755 t/Contract.t create mode 100755 t/Creators.t create mode 100755 t/Csv.t create mode 100755 t/Heading.t create mode 100755 t/ItemCirculationAlertPreference.t create mode 100755 t/Items.t create mode 100755 t/Letters.t create mode 100755 t/Log.t create mode 100755 t/Matcher.t create mode 100755 t/Members.t create mode 100755 t/Message.t create mode 100755 t/NewsChannels.t create mode 100755 t/Overdues.t create mode 100755 t/Patroncards.t create mode 100755 t/Print.t create mode 100755 t/Reports.t create mode 100755 t/Ris.t create mode 100755 t/RotatingCollections.t create mode 100755 t/SMS.t create mode 100755 t/Tags.t create mode 100755 t/UploadedFile.t --- a/t/Auth_with_cas.t +++ a/t/Auth_with_cas.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::Auth_with_cas'); +} + --- a/t/AuthoritiesMarc.t +++ a/t/AuthoritiesMarc.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'); +} + --- a/t/Biblio.t +++ a/t/Biblio.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::Biblio'); +} + --- a/t/Breeding.t +++ a/t/Breeding.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::Breeding'); +} + --- a/t/Category.t +++ a/t/Category.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::Category'); +} + --- a/t/ClassSortRoutine.t +++ a/t/ClassSortRoutine.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'); +} + --- a/t/ClassSource.t +++ a/t/ClassSource.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::ClassSource'); +} + --- a/t/Contract.t +++ a/t/Contract.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::Contract'); +} + --- a/t/Creators.t +++ a/t/Creators.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::Creators'); +} + --- a/t/Csv.t +++ a/t/Csv.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::Csv'); +} + --- a/t/Heading.t +++ a/t/Heading.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::Heading'); +} + --- a/t/ItemCirculationAlertPreference.t +++ a/t/ItemCirculationAlertPreference.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::ItemCirculationAlertPreference'); +} + --- a/t/Items.t +++ a/t/Items.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::Items'); +} + --- a/t/Letters.t +++ a/t/Letters.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::Letters'); +} + --- a/t/Log.t +++ a/t/Log.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::Log'); +} + --- a/t/Matcher.t +++ a/t/Matcher.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::Matcher'); +} + --- a/t/Members.t +++ a/t/Members.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'); +} + --- a/t/Message.t +++ a/t/Message.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::Message'); +} + --- a/t/NewsChannels.t +++ a/t/NewsChannels.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::NewsChannels'); +} + --- a/t/Overdues.t +++ a/t/Overdues.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::Overdues'); +} + --- a/t/Patroncards.t +++ a/t/Patroncards.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'); +} + --- a/t/Print.t +++ a/t/Print.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::Print'); +} + --- a/t/Reports.t +++ a/t/Reports.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'); +} + --- a/t/Ris.t +++ a/t/Ris.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::Ris'); +} + --- a/t/RotatingCollections.t +++ a/t/RotatingCollections.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::RotatingCollections'); +} + --- a/t/SMS.t +++ a/t/SMS.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::SMS'); +} + --- a/t/Tags.t +++ a/t/Tags.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::Tags'); +} + --- a/t/UploadedFile.t +++ a/t/UploadedFile.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::UploadedFile'); +} + --