Lines 18-24
Link Here
|
18 |
use Modern::Perl; |
18 |
use Modern::Perl; |
19 |
|
19 |
|
20 |
use DateTime::Duration; |
20 |
use DateTime::Duration; |
21 |
use Test::More tests => 79; |
21 |
use Test::More tests => 76; |
22 |
use Test::Warn; |
22 |
use Test::Warn; |
23 |
|
23 |
|
24 |
use t::lib::Mocks; |
24 |
use t::lib::Mocks; |
Lines 34-40
use Koha::Patrons;
Link Here
|
34 |
use Koha::Suggestions; |
34 |
use Koha::Suggestions; |
35 |
|
35 |
|
36 |
BEGIN { |
36 |
BEGIN { |
37 |
use_ok('C4::Suggestions', qw( GetSuggestion ModSuggestion GetSuggestionInfo GetSuggestionFromBiblionumber GetSuggestionByStatus ConnectSuggestionAndBiblio DelSuggestion MarcRecordFromNewSuggestion GetUnprocessedSuggestions DelSuggestionsOlderThan )); |
37 |
use_ok('C4::Suggestions', qw( GetSuggestion ModSuggestion GetSuggestionInfo GetSuggestionByStatus ConnectSuggestionAndBiblio DelSuggestion MarcRecordFromNewSuggestion GetUnprocessedSuggestions DelSuggestionsOlderThan )); |
38 |
} |
38 |
} |
39 |
|
39 |
|
40 |
my $schema = Koha::Database->new->schema; |
40 |
my $schema = Koha::Database->new->schema; |
Lines 287-297
is( $suggestion->{firstnamesuggestedby}, $member->{firstname}, 'GetSuggestionInf
Link Here
|
287 |
is( $suggestion->{borrnumsuggestedby}, $my_suggestion->{suggestedby}, 'GetSuggestionInfo returns the borrower number correctly' ); |
287 |
is( $suggestion->{borrnumsuggestedby}, $my_suggestion->{suggestedby}, 'GetSuggestionInfo returns the borrower number correctly' ); |
288 |
|
288 |
|
289 |
|
289 |
|
290 |
is( GetSuggestionFromBiblionumber(), undef, 'GetSuggestionFromBiblionumber without the biblio number returns undef' ); |
|
|
291 |
is( GetSuggestionFromBiblionumber(2), undef, 'GetSuggestionFromBiblionumber with an invalid biblio number returns undef' ); |
292 |
is( GetSuggestionFromBiblionumber($biblio_1->biblionumber), $my_suggestionid, 'GetSuggestionFromBiblionumber functions correctly' ); |
293 |
|
294 |
|
295 |
my $suggestions = GetSuggestionByStatus(); |
290 |
my $suggestions = GetSuggestionByStatus(); |
296 |
is( @$suggestions, 0, 'GetSuggestionByStatus without the status returns an empty array' ); |
291 |
is( @$suggestions, 0, 'GetSuggestionByStatus without the status returns an empty array' ); |
297 |
$suggestions = GetSuggestionByStatus('CHECKED'); |
292 |
$suggestions = GetSuggestionByStatus('CHECKED'); |
298 |
- |
|
|