summaryrefslogtreecommitdiffstats
path: root/tests/test_xmlrpc/test_nesting.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2011-06-08 13:43:20 -0400
committerEndi Sukma Dewata <edewata@people02.fedoraproject.org>2011-06-08 23:30:11 +0000
commit4ef8b58c26a2b7fde7d4f1ae98053f56ad2823b7 (patch)
tree5bcc859ffc3ce8863523d02fc2cae307c8ae07ee /tests/test_xmlrpc/test_nesting.py
parentab098ada043d882b9c3503af8e5d9af3977ab84d (diff)
downloadfreeipa-4ef8b58c26a2b7fde7d4f1ae98053f56ad2823b7.tar.gz
freeipa-4ef8b58c26a2b7fde7d4f1ae98053f56ad2823b7.tar.xz
freeipa-4ef8b58c26a2b7fde7d4f1ae98053f56ad2823b7.zip
Add UID, GID and e-mail to the user default attributes.
ticket https://fedorahosted.org/freeipa/ticket/1265
Diffstat (limited to 'tests/test_xmlrpc/test_nesting.py')
-rw-r--r--tests/test_xmlrpc/test_nesting.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_xmlrpc/test_nesting.py b/tests/test_xmlrpc/test_nesting.py
index d28535015..a7e6cb8d1 100644
--- a/tests/test_xmlrpc/test_nesting.py
+++ b/tests/test_xmlrpc/test_nesting.py
@@ -39,7 +39,7 @@ fqdn1 = u'testhost1.%s' % api.env.domain
host_dn1 = u'fqdn=%s,cn=computers,cn=accounts,%s' % (fqdn1, api.env.basedn)
-class test_group(Declarative):
+class test_nesting(Declarative):
cleanup_commands = [
('group_del', [group1], {}),
('group_del', [group2], {}),
@@ -136,6 +136,7 @@ class test_group(Declarative):
sn=[u'User1'],
uid=[user1],
uidnumber=[fuzzy_digits],
+ gidnumber=[fuzzy_digits],
displayname=[u'Test User1'],
cn=[u'Test User1'],
initials=[u'TU'],
@@ -164,6 +165,7 @@ class test_group(Declarative):
sn=[u'User2'],
uid=[user2],
uidnumber=[fuzzy_digits],
+ gidnumber=[fuzzy_digits],
displayname=[u'Test User2'],
cn=[u'Test User2'],
initials=[u'TU'],