ansible/test/integration/targets/nxos_config/tests/nxapi/sublevel.yaml
Nathaniel Case a197125954
Nxos restore provider to nxapi tests (#41818)
* Quick and dirty sed to add provider

* Manually verify the rest of the cases

* Add missing provider
2018-07-02 09:43:51 -04:00

41 lines
912 B
YAML

---
- debug: msg="START nxapi/sublevel.yaml"
- name: setup
nxos_config:
lines: no ip access-list test
match: none
provider: "{{ connection }}"
ignore_errors: yes
- name: configure sub level command
nxos_config:
lines: 10 permit ip any any log
parents: ip access-list test
provider: "{{ connection }}"
register: result
- assert:
that:
- "result.changed == true"
- "'ip access-list test' in result.updates"
- "'10 permit ip any any log' in result.updates"
- name: configure sub level command idempotent check
nxos_config:
lines: 10 permit ip any any log
parents: ip access-list test
provider: "{{ connection }}"
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
nxos_config:
lines: no ip access-list test
match: none
provider: "{{ connection }}"
- debug: msg="END nxapi/sublevel.yaml"