mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-29 12:29:10 -07:00
BIGIP: Bugfix.bigip.data.group (#53968)
* Moving comparision functions to compare.py from common.py * fixes issue with data group elements containing IPs with Route Domains refactors main() function and module_manager to accomodate new patterns updates doc variables
This commit is contained in:
parent
2b00cb592d
commit
313e07dfd3
2 changed files with 89 additions and 51 deletions
|
@ -116,9 +116,11 @@ class TestManager(unittest.TestCase):
|
|||
separator=':=',
|
||||
state='present',
|
||||
partition='Common',
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
provider=dict(
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
)
|
||||
))
|
||||
|
||||
module = AnsibleModule(
|
||||
|
@ -150,9 +152,11 @@ class TestManager(unittest.TestCase):
|
|||
separator=':=',
|
||||
state='present',
|
||||
partition='Common',
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
provider=dict(
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
)
|
||||
))
|
||||
|
||||
module = AnsibleModule(
|
||||
|
@ -185,9 +189,11 @@ class TestManager(unittest.TestCase):
|
|||
separator=':=',
|
||||
state='present',
|
||||
partition='Common',
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
provider=dict(
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
)
|
||||
))
|
||||
|
||||
module = AnsibleModule(
|
||||
|
@ -217,9 +223,11 @@ class TestManager(unittest.TestCase):
|
|||
internal=False,
|
||||
state='absent',
|
||||
partition='Common',
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
provider=dict(
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
)
|
||||
))
|
||||
|
||||
module = AnsibleModule(
|
||||
|
@ -249,9 +257,11 @@ class TestManager(unittest.TestCase):
|
|||
internal=False,
|
||||
state='absent',
|
||||
partition='Common',
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
provider=dict(
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
)
|
||||
))
|
||||
|
||||
module = AnsibleModule(
|
||||
|
@ -284,9 +294,11 @@ class TestManager(unittest.TestCase):
|
|||
separator=':=',
|
||||
state='present',
|
||||
partition='Common',
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
provider=dict(
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
)
|
||||
))
|
||||
|
||||
module = AnsibleModule(
|
||||
|
@ -318,9 +330,11 @@ class TestManager(unittest.TestCase):
|
|||
separator=':=',
|
||||
state='present',
|
||||
partition='Common',
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
provider=dict(
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
)
|
||||
))
|
||||
|
||||
module = AnsibleModule(
|
||||
|
@ -353,9 +367,11 @@ class TestManager(unittest.TestCase):
|
|||
separator=':=',
|
||||
state='present',
|
||||
partition='Common',
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
provider=dict(
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
)
|
||||
))
|
||||
|
||||
module = AnsibleModule(
|
||||
|
@ -387,9 +403,11 @@ class TestManager(unittest.TestCase):
|
|||
separator=':=',
|
||||
state='present',
|
||||
partition='Common',
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
provider=dict(
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
)
|
||||
))
|
||||
|
||||
module = AnsibleModule(
|
||||
|
@ -442,9 +460,11 @@ class TestManager(unittest.TestCase):
|
|||
separator=':=',
|
||||
state='present',
|
||||
partition='Common',
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
provider=dict(
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
)
|
||||
))
|
||||
|
||||
module = AnsibleModule(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue