Koha/t/db_dependent/lib/KohaTest/Members.pm
Srdjan 95077493bd Bug 7243: Rewording and renaming
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Passed-QA-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
2013-01-24 09:17:12 -05:00

63 lines
1.9 KiB
Perl

package KohaTest::Members;
use base qw( KohaTest );
use strict;
use warnings;
use Test::More;
use C4::Members;
sub testing_class { 'C4::Members' };
sub methods : Test( 1 ) {
my $self = shift;
my @methods = qw( Search
GetMemberDetails
patronflags
GetMember
GetMemberIssuesAndFines
ModMember
AddMember
Check_Userid
changepassword
fixup_cardnumber
GetGuarantees
UpdateGuarantees
GetPendingIssues
GetAllIssues
GetMemberAccountRecords
GetMemberAccountBalance
GetBorNotifyAcctRecord
checkuniquemember
checkcardnumber
getzipnamecity
getidcity
GetExpiryDate
checkuserpassword
GetborCatFromCatType
GetBorrowercategory
ethnicitycategories
fixEthnicity
GetAge
get_institutions
add_member_orgs
MoveMemberToDeleted
DelMember
ExtendMemberSubscriptionTo
GetTitles
GetPatronImage
PutPatronImage
RmPatronImage
GetBorrowersToExpunge
GetBorrowersWhoHaveNeverBorrowed
GetBorrowersWithIssuesHistoryOlderThan
GetBorrowersNamesAndLatestIssue
IssueSlip
);
can_ok( $self->testing_class, @methods );
}
1;