Bugzilla – Attachment 49956 Details for
Bug 16086
Add Koha::Issue objects.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16086: Add tests for Koha::Issues
Bug-16086-Add-tests-for-KohaIssues.patch (text/plain), 2.67 KB, created by
Jonathan Druart
on 2016-04-06 12:10:12 UTC
(
hide
)
Description:
Bug 16086: Add tests for Koha::Issues
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2016-04-06 12:10:12 UTC
Size:
2.67 KB
patch
obsolete
>From 89f39c7e3b295586ae6f7e3392c1a5f64fa8ae98 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 6 Apr 2016 13:09:31 +0100 >Subject: [PATCH] Bug 16086: Add tests for Koha::Issues > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > t/db_dependent/Koha/Issues.t | 60 ++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 60 insertions(+) > create mode 100644 t/db_dependent/Koha/Issues.t > >diff --git a/t/db_dependent/Koha/Issues.t b/t/db_dependent/Koha/Issues.t >new file mode 100644 >index 0000000..38023c8 >--- /dev/null >+++ b/t/db_dependent/Koha/Issues.t >@@ -0,0 +1,60 @@ >+#!/usr/bin/perl >+ >+# Copyright 2015 Koha Development team >+# >+# This file is part of Koha >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Test::More tests => 4; >+ >+use Koha::Issue; >+use Koha::Issues; >+use Koha::Database; >+ >+use t::lib::TestBuilder; >+ >+my $schema = Koha::Database->new->schema; >+$schema->storage->txn_begin; >+ >+my $builder = t::lib::TestBuilder->new; >+my $patron = $builder->build( { source => 'Borrower' } ); >+my $item_1 = $builder->build( { source => 'Item' } ); >+my $item_2 = $builder->build( { source => 'Item' } ); >+my $nb_of_issues = Koha::Issues->search->count; >+my $new_issue_1 = Koha::Issue->new( >+ { borrowernumber => $patron->{borrowernumber}, >+ itemnumber => $item_1->{itemnumber}, >+ } >+)->store; >+my $new_issue_2 = Koha::Issue->new( >+ { borrowernumber => $patron->{borrowernumber}, >+ itemnumber => $item_2->{itemnumber}, >+ } >+)->store; >+ >+like( $new_issue_1->issue_id, qr|^\d+$|, 'Adding a new issue should have set the issue_id' ); >+is( Koha::Issues->search->count, $nb_of_issues + 2, 'The 2 issues should have been added' ); >+ >+my $retrieved_issue_1 = Koha::Issues->find( $new_issue_1->issue_id ); >+is( $retrieved_issue_1->itemnumber, $new_issue_1->itemnumber, 'Find a issue by id should return the correct issue' ); >+ >+$retrieved_issue_1->delete; >+is( Koha::Issues->search->count, $nb_of_issues + 1, 'Delete should delete the issue' ); >+ >+$schema->storage->txn_rollback; >+ >+1; >-- >2.7.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 16086
:
49256
|
49857
|
49915
|
49955
| 49956