diff options
author | Rob Crittenden <rcritten@redhat.com> | 2011-08-30 18:38:22 -0400 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2011-08-31 14:34:52 +0200 |
commit | ca1ca17cb61516dff6933b1b0381b32e1e38d44c (patch) | |
tree | ae32fb50bde003c40889aa55ba6e25939f903d46 /tests/test_xmlrpc/test_nesting.py | |
parent | 8f5e82940fd2f5a81fe3644686b06ec08fb22c58 (diff) | |
download | freeipa-ca1ca17cb61516dff6933b1b0381b32e1e38d44c.tar.gz freeipa-ca1ca17cb61516dff6933b1b0381b32e1e38d44c.tar.xz freeipa-ca1ca17cb61516dff6933b1b0381b32e1e38d44c.zip |
Suppress managed netgroups from showing as memberof hostgroups.
By design these managed netgroups are not supposed to show unless you
specifically want to see them.
https://fedorahosted.org/freeipa/ticket/1738
Diffstat (limited to 'tests/test_xmlrpc/test_nesting.py')
-rw-r--r-- | tests/test_xmlrpc/test_nesting.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/test_xmlrpc/test_nesting.py b/tests/test_xmlrpc/test_nesting.py index 31525cd26..cb2d1d0b2 100644 --- a/tests/test_xmlrpc/test_nesting.py +++ b/tests/test_xmlrpc/test_nesting.py @@ -705,7 +705,6 @@ class test_nesting(Declarative): objectclass=objectclasses.hostgroup, description=[u'Test hostgroup 1'], ipauniqueid=[fuzzy_uuid], - memberof_netgroup=[hostgroup1], mepmanagedentry=lambda x: [DN(i) for i in x] == \ [DN(('cn',hostgroup1),('cn','ng'),('cn','alt'), api.env.basedn)], @@ -728,7 +727,6 @@ class test_nesting(Declarative): objectclass=objectclasses.hostgroup, description=[u'Test hostgroup 2'], ipauniqueid=[fuzzy_uuid], - memberof_netgroup=[hostgroup2], mepmanagedentry=lambda x: [DN(i) for i in x] == \ [DN(('cn',hostgroup2),('cn','ng'),('cn','alt'), api.env.basedn)], @@ -755,7 +753,6 @@ class test_nesting(Declarative): 'cn': [hostgroup2], 'description': [u'Test hostgroup 2'], 'member_host': [fqdn1], - 'memberof_netgroup': [hostgroup2], }, ), ), @@ -779,7 +776,6 @@ class test_nesting(Declarative): 'cn': [hostgroup1], 'description': [u'Test hostgroup 1'], 'member_hostgroup': [hostgroup2], - 'memberof_netgroup': [hostgroup1], }, ), ), @@ -795,7 +791,6 @@ class test_nesting(Declarative): 'dn': lambda x: DN(x) == hgdn1, 'memberindirect_host': [u'testhost1.%s' % api.env.domain], 'member_hostgroup': [hostgroup2], - 'memberof_netgroup': [hostgroup1], 'cn': [hostgroup1], 'description': [u'Test hostgroup 1'], }, |