ansible/test/integration/targets/nxos_nxapi/tests/cli/disable.yaml
Nathaniel Case 483df13626 Fixing issues with httpapi (#40388)
* I seem to have forgotten the back half of tests

* Set http timeout from persistent_command_timeout

* Tweak URL generation and provide URL on error

* Push var_options to connection process

* Don't wait forever if coming from persistent

* Don't send the entire contents of variables to ansible-connection
2018-05-21 15:58:35 +01:00

31 lines
527 B
YAML

---
- debug: msg="START cli/disable.yaml"
- name: Disable NXAPI
nxos_nxapi:
state: absent
register: result
- name: Check NXAPI state
nxos_command:
commands:
- show feature | grep nxapi
register: result
- name: Assert NXAPI is disabled
assert:
that:
result.stdout[0] is search('disabled')
- name: Disable NXAPI again
nxos_nxapi:
state:
absent
register: result
- name: Assert idempotence
assert:
that:
result.changed == false
- debug: msg="END cli/disable.yaml"