From 77b7fda54df620e230e3da1f3baee0ee615f8e4b Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 19 Apr 2017 11:57:33 -0300 Subject: [PATCH] Bug 18361: (QA followup) Add tests for the no params case This patch adds a test for the trivial case in which no param is passed and the ->find method returns undef. For completeness purposes. Signed-off-by: Tomas Cohen Arazi Signed-off-by: Jonathan Druart --- t/db_dependent/Koha/Objects.t | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/db_dependent/Koha/Objects.t b/t/db_dependent/Koha/Objects.t index 26125113b1..0f5926de76 100644 --- a/t/db_dependent/Koha/Objects.t +++ b/t/db_dependent/Koha/Objects.t @@ -110,7 +110,7 @@ subtest 'new' => sub { }; subtest 'find' => sub { - plan tests => 4; + plan tests => 5; # check find on a single PK my $patron = $builder->build({ source => 'Borrower' }); @@ -133,6 +133,8 @@ subtest 'find' => sub { my @pk = ( $rule->{branchcode}, $rule->{categorycode}, $rule->{itemtype} ); is( ref(Koha::IssuingRules->find(@pk)), "Koha::IssuingRule", 'Find returned a Koha object for composite primary key' ); + + is( Koha::Patrons->find(), undef, 'Find returns undef if no params passed' ); }; subtest 'search_related' => sub { -- 2.11.0