Lines 17-23
Link Here
|
17 |
|
17 |
|
18 |
use Modern::Perl; |
18 |
use Modern::Perl; |
19 |
|
19 |
|
20 |
use Test::More tests => 39; |
20 |
use Test::More tests => 40; |
21 |
use Test::Exception; |
21 |
use Test::Exception; |
22 |
use Test::Warn; |
22 |
use Test::Warn; |
23 |
|
23 |
|
Lines 1733-1738
subtest 'normalized_oclc' => sub {
Link Here
|
1733 |
); |
1733 |
); |
1734 |
}; |
1734 |
}; |
1735 |
|
1735 |
|
|
|
1736 |
subtest 'opac_suppressed() tests' => sub { |
1737 |
|
1738 |
plan tests => 4; |
1739 |
|
1740 |
$schema->storage->txn_begin; |
1741 |
|
1742 |
my $record = MARC::Record->new; |
1743 |
$record->append_fields( |
1744 |
MARC::Field->new( '245', '', '', a => 'Some title 1' ), |
1745 |
MARC::Field->new( '942', '', '', n => '1' ), |
1746 |
); |
1747 |
|
1748 |
my ($biblio_id) = AddBiblio( $record, qw{} ); |
1749 |
my $biblio = Koha::Biblios->find($biblio_id); |
1750 |
|
1751 |
ok( $biblio->opac_suppressed(), 'Record is suppressed' ); |
1752 |
|
1753 |
$record->field('942')->replace_with( MARC::Field->new( '942', '', '', n => '0' ) ); |
1754 |
($biblio_id) = AddBiblio( $record, qw{} ); |
1755 |
$biblio = Koha::Biblios->find($biblio_id); |
1756 |
|
1757 |
ok( !$biblio->opac_suppressed(), 'Record is not suppressed' ); |
1758 |
|
1759 |
$record->field('942')->replace_with( MARC::Field->new( '942', '', '', n => '' ) ); |
1760 |
($biblio_id) = AddBiblio( $record, qw{} ); |
1761 |
$biblio = Koha::Biblios->find($biblio_id); |
1762 |
|
1763 |
ok( !$biblio->opac_suppressed(), 'Record is not suppressed' ); |
1764 |
|
1765 |
$record->delete_field( $record->field('942') ); |
1766 |
($biblio_id) = AddBiblio( $record, qw{} ); |
1767 |
$biblio = Koha::Biblios->find($biblio_id); |
1768 |
|
1769 |
ok( !$biblio->opac_suppressed(), 'Record is not suppressed' ); |
1770 |
|
1771 |
$schema->storage->txn_rollback; |
1772 |
}; |
1773 |
|
1736 |
subtest 'ratings' => sub { |
1774 |
subtest 'ratings' => sub { |
1737 |
plan tests => 1; |
1775 |
plan tests => 1; |
1738 |
# See t/db_dependent/Koha/Ratings.t |
1776 |
# See t/db_dependent/Koha/Ratings.t |
1739 |
- |
|
|