def test_simple_inventory_dict(self): target = inventory.Inventory([], sections=[ inventory.InventoryGroup('test', ['localhost', 'localhost2'])]) source = inventory.simple_inventory( {"test": ["localhost", "localhost2"]}) self.assertEquals(source.to_string(), target.to_string())
def test_simple_inventory_list_and_dict(self): target = inventory.Inventory(['localhost', 'localhost2'], sections=[ inventory.InventoryGroup( 'test', ['localhost', 'localhost2']) ]) source = inventory.simple_inventory( ['localhost', 'localhost2'], {"test": ["localhost", "localhost2"]}) self.assertEquals(source.to_string(), target.to_string())
def test_simple_inventory_list(self): target = inventory.Inventory(['localhost', 'localhost2']) source = inventory.simple_inventory(['localhost', 'localhost2']) self.assertEquals(source.to_string(), target.to_string())