Commit 23fee4b8 by g-k-r Committed by Richard C Isaacson

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
parent 38abd5e2
......@@ -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
\ No newline at end of file
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']
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment