Bugzilla – Attachment 37741 Details for
Bug 13189
Patron card creator patron search browse by last name broken by extended attributes
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[Signed-off] Bug 13189 [QA Followup] - Unit Tests
Signed-off-Bug-13189-QA-Followup---Unit-Tests.patch (text/plain), 1.89 KB, created by
Marc Véron
on 2015-04-13 13:40:25 UTC
(
hide
)
Description:
[Signed-off] Bug 13189 [QA Followup] - Unit Tests
Filename:
MIME Type:
Creator:
Marc Véron
Created:
2015-04-13 13:40:25 UTC
Size:
1.89 KB
patch
obsolete
>From 7ee5456b5ccf5b0170a4d928d5f4e3dd6cf2667b Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Mon, 8 Dec 2014 07:19:59 -0500 >Subject: [PATCH] [Signed-off] Bug 13189 [QA Followup] - Unit Tests >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Resolved easy conflict (test count) and tested. >Signed-off-by: Marc Véron <veron@veron.ch> >--- > t/db_dependent/Members.t | 14 +++++++++++++- > 1 file changed, 13 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/Members.t b/t/db_dependent/Members.t >index cf19819..dc2b0a3 100755 >--- a/t/db_dependent/Members.t >+++ b/t/db_dependent/Members.t >@@ -17,10 +17,12 @@ > > use Modern::Perl; > >-use Test::More tests => 72; >+use Test::More tests => 74; > use Test::MockModule; > use Data::Dumper; > use C4::Context; >+use C4::Members::Attributes qw( SetBorrowerAttributes ); >+use C4::Members::AttributeTypes; > > BEGIN { > use_ok('C4::Members'); >@@ -183,6 +185,16 @@ $results = Search(\@searchstring); > ok (_find_member($results), "Search (arrayref) for independent branches, same branch") > or diag("Card $CARDNUMBER not found in the resultset for independent branches: ".Dumper(C4::Context->preference($INDEPENDENT_BRANCHES_PREF), $results)); > >+C4::Context->set_preference('ExtendedPatronAttributes', 1); >+my $attr_type = C4::Members::AttributeTypes->new("TEST", "Test Description"); >+$attr_type->staff_searchable(1); >+$attr_type->store(); >+SetBorrowerAttributes($addmem, [ { code => 'TEST', value => 'XYZZYX' } ] ); >+$results = Search( "XYZZYX", undef, undef, undef, undef, undef, 1 ); >+is( @$results, 0, "Search without extended attributes returns no results" ); >+$results = Search( "XYZZYX", undef, undef, undef, undef, undef, 0 ); >+is( @$results, 1, "Search with extended attributes returns results" ); >+ > C4::Context->set_preference( 'CardnumberLength', '' ); > C4::Context->clear_syspref_cache(); > >-- >1.7.10.4
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 13189
:
33194
|
33433
|
33451
|
34171
|
34172
|
37741
|
37747