From 5dd414e0e3cfb12606cba98dc66f0d93806116ff Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 6 Sep 2016 10:40:28 +0100 Subject: [PATCH] Bug 14637: Fix add patron category under MySQL 5.7 - tests --- t/db_dependent/Koha/Patron/Categories.t | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/t/db_dependent/Koha/Patron/Categories.t b/t/db_dependent/Koha/Patron/Categories.t index df0327c..8f3fae7 100644 --- a/t/db_dependent/Koha/Patron/Categories.t +++ b/t/db_dependent/Koha/Patron/Categories.t @@ -19,7 +19,7 @@ use Modern::Perl; -use Test::More tests => 7; +use Test::More tests => 8; use Koha::Database; use Koha::Patron::Category; @@ -57,6 +57,16 @@ is( $retrieved_category_2->checkprevcheckout, 'inherit', 'Koha::Patron::Category $retrieved_category_1->delete; is( Koha::Patron::Categories->search->count, $nb_of_categories + 1, 'Delete should have deleted the patron category' ); +my $new_category_4 = Koha::Patron::Category->new( + { categorycode => 'mycatcodeW', + category_type => 'A', + description => 'mycatdescW', + upperagelimit => '', + dateofbirthrequired => '', + } +)->store; +is( Koha::Patron::Categories->search->count, $nb_of_categories + 2, 'upperagelimit and dateofbirthrequired should have a default value if empty string is passed' ); + $schema->storage->txn_rollback; 1; -- 2.8.1