ansible/test/integration/targets/ios_config/tests/cli/sublevel.yaml
Nathaniel Case 381263ad99
ios test cleanup pt 2 (#42570)
* Remove local from ios_config to avoid needing to add provider

* ios_smoke should test all with local to pick up the slack
2018-07-10 09:03:04 -04:00

39 lines
948 B
YAML

---
- debug: msg="START cli/sublevel.yaml on connection={{ ansible_connection }}"
- name: setup test
ios_config:
lines:
- 'no ip access-list extended test'
- 'no ip access-list standard test'
match: none
- name: configure sub level command
ios_config:
lines: ['permit ip any any log']
parents: ['ip access-list extended test']
register: result
- assert:
that:
- "result.changed == true"
- "'ip access-list extended test' in result.updates"
- "'permit ip any any log' in result.updates"
- name: configure sub level command idempotent check
ios_config:
lines: ['permit ip any any log']
parents: ['ip access-list extended test']
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
ios_config:
lines:
- 'no ip access-list extended test'
match: none
- debug: msg="END cli/sublevel.yaml on connection={{ ansible_connection }}"