Bugzilla – Attachment 96179 Details for
Bug 24213
Koha::Object->get_from_storage should return undef if the object has been deleted
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24213: Add tests
Bug-24213-Add-tests.patch (text/plain), 1.55 KB, created by
Jonathan Druart
on 2019-12-11 08:41:09 UTC
(
hide
)
Description:
Bug 24213: Add tests
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2019-12-11 08:41:09 UTC
Size:
1.55 KB
patch
obsolete
>From 59f4fa1d8f8bd4f226cdf7edc75a28b87f01ca01 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 11 Dec 2019 09:39:15 +0100 >Subject: [PATCH] Bug 24213: Add tests > >--- > t/db_dependent/Koha/Object.t | 25 ++++++++++++++++++++++++- > 1 file changed, 24 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/Koha/Object.t b/t/db_dependent/Koha/Object.t >index a37695bc1f..3f8e060728 100755 >--- a/t/db_dependent/Koha/Object.t >+++ b/t/db_dependent/Koha/Object.t >@@ -17,7 +17,7 @@ > > use Modern::Perl; > >-use Test::More tests => 12; >+use Test::More tests => 13; > use Test::Exception; > use Test::Warn; > use DateTime; >@@ -470,3 +470,26 @@ subtest 'unblessed_all_relateds' => sub { > > $schema->storage->txn_rollback; > }; >+ >+subtest 'get_from_storage' => sub { >+ plan tests => 4; >+ >+ $schema->storage->txn_begin; >+ >+ my $biblio = $builder->build_sample_biblio; >+ >+ my $old_title = $biblio->title; >+ my $new_title = 'new_title'; >+ Koha::Biblios->find( $biblio->biblionumber )->title($new_title)->store; >+ >+ is( $biblio->title, $old_title, 'current $biblio should not be modified' ); >+ is( $biblio->get_from_storage->title, >+ $new_title, 'get_from_storage should return an updated object' ); >+ >+ Koha::Biblios->find( $biblio->biblionumber )->delete; >+ is( ref($biblio), 'Koha::Biblio', 'current $biblio should not be deleted' ); >+ is( $biblio->get_from_storage, undef, >+ 'get_from_storage should return undef if the object has been deleted' ); >+ >+ $schema->storage->txn_rollback; >+}; >-- >2.11.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 24213
:
96179
|
96180
|
98175
|
98176
|
98203
|
98204