mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-10 19:01:14 +00:00
ios integration tests to network_cli (#33920)
* Preliminary steps * Fix Python3 network_cli ios * Add connection to debug strings * Fix ios confirm prompt by way of optional newline Also update ios_user delete tests
This commit is contained in:
@@ -58,7 +58,7 @@ class TestIosUserModule(TestIosModule):
|
||||
set_module_args(dict(name='ansible', state='absent'))
|
||||
result = self.execute_module(changed=True)
|
||||
cmd = json.loads(
|
||||
'{"answer": "y", ' +
|
||||
'{"answer": "y", "newline": false, ' +
|
||||
'"prompt": "This operation will remove all username related ' +
|
||||
'configurations with same name", "command": "no username ansible"}'
|
||||
)
|
||||
@@ -87,7 +87,7 @@ class TestIosUserModule(TestIosModule):
|
||||
set_module_args(dict(purge=True))
|
||||
result = self.execute_module(changed=True)
|
||||
cmd = json.loads(
|
||||
'{"answer": "y", ' +
|
||||
'{"answer": "y", "newline": false, ' +
|
||||
'"prompt": "This operation will remove all username related ' +
|
||||
'configurations with same name", "command": "no username ansible"}'
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user