1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-07-08 19:49:09 +00:00

modules: network: ingate: Add module ig_store_edit (#47675)

* modules: network: ingate: Add module ig_store_edit

* modules: network: ingate: Add module ig_config

Manage the configuration database on an Ingate SBC.
This commit is contained in:
Ingate Systems 2019-01-18 05:05:45 +01:00 committed by ansibot
parent 308e4c31c6
commit 5671ff983d
13 changed files with 901 additions and 4 deletions

View file

@ -50,9 +50,10 @@ def load_fixture(name):
class TestIngateModule(ModuleTestCase):
def execute_module(self, failed=False, changed=False, fixture=None):
def execute_module(self, failed=False, changed=False, fixture=None,
command=None):
self.load_fixtures(fixture)
self.load_fixtures(fixture, command, changed)
if failed:
result = self.failed()
@ -79,5 +80,5 @@ class TestIngateModule(ModuleTestCase):
self.assertEqual(result['changed'], changed, result)
return result
def load_fixtures(self, module_name=None):
def load_fixtures(self, fixture=None, command=None, changed=False):
pass