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:
g-k-r 2014-01-31 12:46:00 +01:00 committed by Richard C Isaacson
parent 16fe09eef8
commit 6626cb0b3d

View file

@ -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']