Koha/t/db_dependent/lib/KohaTest/Members.pm
Srdjan Jankovic a9ded4fa00 bug_7001: Issue and Reserve slips are notices.
Branches can have their own version of notices - added branchcode to
letter table.
Support html notices - added is_html to letter table.
Support for borrower attributes in templates.
GetPreparedletter() is the interface for compiling letters (notices).
Sysprefs for notice and slips stylesheets
Added TRANSFERSLIP to the letters

Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
2012-03-09 10:11:20 +01:00

62 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
GetBorNotifyAcctRecord
checkuniquemember
checkcardnumber
getzipnamecity
getidcity
GetExpiryDate
checkuserpassword
GetborCatFromCatType
GetBorrowercategory
ethnicitycategories
fixEthnicity
GetAge
get_institutions
add_member_orgs
MoveMemberToDeleted
DelMember
ExtendMemberSubscriptionTo
GetTitles
GetPatronImage
PutPatronImage
RmPatronImage
GetBorrowersWhoHaveNotBorrowedSince
GetBorrowersWhoHaveNeverBorrowed
GetBorrowersWithIssuesHistoryOlderThan
GetBorrowersNamesAndLatestIssue
IssueSlip
);
can_ok( $self->testing_class, @methods );
}
1;