Bug 18361: (QA followup) Add tests for the no params case
authorTomas Cohen Arazi <tomascohen@theke.io>
Wed, 19 Apr 2017 14:57:33 +0000 (11:57 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 16 Jun 2017 14:52:18 +0000 (11:52 -0300)
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 <tomascohen@theke.io>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
t/db_dependent/Koha/Objects.t

index 2612511..0f5926d 100644 (file)
@@ -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 {