ansible/test/integration/targets/junos_static_routes/tests/netconf/deleted.yaml
Daniel Mellado 9404384985
Add junos_static_routes module (#65239)
This commit adds a new network resource module for static routes on
junos devices.

Signed-off-by: Daniel Mellado <dmellado@redhat.com>
2019-12-04 12:59:56 +01:00

37 lines
1 KiB
YAML

---
- debug:
msg: "START junos_static_routes deleted integration tests on connection={{ ansible_connection }}"
- include_tasks: _remove_config.yaml
- include_tasks: _base_config.yaml
- block:
- name: Delete the provided configuration with the exisiting running configuration
junos_static_routes: &deleted
config:
- address_families:
- afi: 'ipv4'
- afi: 'ipv6'
state: deleted
register: result
- name: Assert the configuration is reflected on host
assert:
that:
- not result.after
debugger: on_failed
- name: Delete the provided configuration with the existing running configuration (IDEMPOTENT)
junos_static_routes: *deleted
register: result
- name: Assert that the previous task was idempotent
assert:
that:
- "result['changed'] == false"
always:
- include_tasks: _remove_config.yaml
- debug:
msg: "END junos_static_routes deleted integration tests on connection={{ ansible_connection }}"