Bug 29315: Remove warnings from Search.t
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 25 Oct 2021 12:37:54 +0000 (14:37 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 25 Oct 2021 12:37:56 +0000 (14:37 +0200)
The syspref SearchLimitLibrary was requested but I don't know what to
say; this indicates that the test requires updating at
t/db_dependent/Search.t line 198.
The syspref FacetOrder was requested but I don't know what to say; this
indicates that the test requires updating at t/db_dependent/Search.t
line 198.
The syspref OPACResultsUnavailableGroupingBy was requested but I don't
know what to say; this indicates that the test requires updating at
t/db_dependent/Search.t line 198.

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
t/db_dependent/Search.t

index 8efe5dff865a71af36b44e74a83c7cd45a4cfc89..29f89270497e2e039d2f70eb6dba0a713dc60f49 100755 (executable)
@@ -194,6 +194,12 @@ $contextmodule->mock('preference', sub {
         return '0';
     } elsif ($pref eq 'Reference_NFL_Statuses') {
         return '0';
+    } elsif ($pref eq 'FacetOrder') {
+        return 'Alphabetical';
+    } elsif ($pref eq 'OPACResultsUnavailableGroupingBy') {
+        return 'branch';
+    } elsif ($pref eq 'SearchLimitLibrary') {
+        return 'both';
     } else {
         warn "The syspref $pref was requested but I don't know what to say; this indicates that the test requires updating"
             unless $pref =~ m/(XSLT|item|branch|holding|image)/i;