mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
add test same host in different files in dir
tests issue #5749 same host defined in different groups which in turn are defined in different ini files in an inventory directory Conflicts: test/units/TestInventory.py
This commit is contained in:
parent
16fe09eef8
commit
6626cb0b3d
1 changed files with 9 additions and 1 deletions
|
@ -430,4 +430,12 @@ class TestInventory(unittest.TestCase):
|
|||
print "HOST VARS=%s" % host_vars
|
||||
print "EXPECTED VARS=%s" % expected_vars
|
||||
|
||||
assert host_vars == expected_vars
|
||||
assert host_vars == expected_vars
|
||||
|
||||
def test_dir_inventory_multiple_groups(self):
|
||||
inventory = self.dir_inventory()
|
||||
group_greek = inventory.get_group('greek')
|
||||
group_major_god = inventory.get_group('major-god')
|
||||
actual_host_names = [host.name for host in group_greek.get_hosts()];
|
||||
print "%s : %s " % (group_greek.name, actual_host_names)
|
||||
assert actual_host_names == ['zeus','morpheus']
|
Loading…
Reference in a new issue