From 2bb8c61744dffdb54b2da5d1b494e59126fe0df1 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 6 Sep 2016 10:40:28 +0100 Subject: [PATCH] [SIGNED-OFF] Bug 14637: Fix add patron category under MySQL 5.7 - tests Signed-off-by: Josef Moravec --- t/db_dependent/Koha/Patron/Categories.t | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/t/db_dependent/Koha/Patron/Categories.t b/t/db_dependent/Koha/Patron/Categories.t index b47bcff..9adfcc0 100644 --- a/t/db_dependent/Koha/Patron/Categories.t +++ b/t/db_dependent/Koha/Patron/Categories.t @@ -86,6 +86,16 @@ subtest 'get_expiry_date' => sub { $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.1.4