Exemplo n.º 1
0
    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())
Exemplo n.º 2
0
    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())
Exemplo n.º 3
0
    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())
Exemplo n.º 4
0
    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())