[SCM] Packaging of Net::Citadel in Debian branch, master, updated. debian/0.16-1-45-gd21e85b
Robert James Clay
jame at rocasa.us
Wed Jun 5 17:20:44 UTC 2013
The following commit has been merged in the master branch:
commit 410ad54655c047b3041cd4a94ca2deb4cee03a37
Author: Robert James Clay <jame at rocasa.us>
Date: Sun Feb 3 09:01:18 2013 -0500
Change name of testing user from RobertBarta to TestUser in t/01citadel.t
diff --git a/t/01citadel.t b/t/01citadel.t
index 667af07..1a9b06c 100644
--- a/t/01citadel.t
+++ b/t/01citadel.t
@@ -115,27 +115,27 @@ eval { ############# CITADEL BUG
# users
-$c->create_user ('RobertBarta', 'xxx');
+$c->create_user ('TestUser', 'xxx');
{
my $c2 = new Net::Citadel (host => $config->{host});
- $c2->login ('RobertBarta', 'xxx') and pass ('login new user');
+ $c2->login ('TestUser', 'xxx') and pass ('login new user');
$c2->logout and pass ('logout new user');
}
-$c->change_user ('RobertBarta', password => 'yyy');
+$c->change_user ('TestUser', password => 'yyy');
{
my $c2 = new Net::Citadel (host => $config->{host});
- $c2->login ('RobertBarta', 'yyy') and pass ('login new password');
+ $c2->login ('TestUser', 'yyy') and pass ('login new password');
$c2->logout and pass ('logout new password');
}
-$c->remove_user ('RobertBarta');
+$c->remove_user ('TestUser');
{
my $c2 = new Net::Citadel (host => $config->{host});
eval {
- $c2->login ('RobertBarta', 'yyy');
+ $c2->login ('TestUser', 'yyy');
}; ok ($@, 'user does not exist any more');
}
--
Packaging of Net::Citadel in Debian
More information about the Pkg-perl-cvs-commits
mailing list