summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_acls/tests/common/parsed.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/eos_acls/tests/common/parsed.yaml')
-rw-r--r--test/integration/targets/eos_acls/tests/common/parsed.yaml29
1 files changed, 0 insertions, 29 deletions
diff --git a/test/integration/targets/eos_acls/tests/common/parsed.yaml b/test/integration/targets/eos_acls/tests/common/parsed.yaml
deleted file mode 100644
index ffadce84ed..0000000000
--- a/test/integration/targets/eos_acls/tests/common/parsed.yaml
+++ /dev/null
@@ -1,29 +0,0 @@
----
-- debug:
- msg: "START eos_acls parsed integration tests on connection={{ ansible_connection }}"
-
-- include_tasks: _parsed_cfg.yaml
-
-- name: Gather acls facts
- eos_facts:
- gather_subset:
- - default
- gather_network_resources:
- - acls
- become: yes
- register: acls_facts
-
-- name: Provide the running configuration for parsing (config to be parsed)
- eos_acls: &parsed
- running_config:
- "{{ lookup('file', '_parsed.cfg') }}"
- state: parsed
- become: yes
- register: result
-
-- assert:
- that:
- - "result.changed == false"
- - "ansible_facts.network_resources.acls|symmetric_difference(result.parsed) == []"
-
-- include_tasks: _remove_config.yaml