summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_config/tests/eapi/sublevel_block.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/eos_config/tests/eapi/sublevel_block.yaml')
-rw-r--r--test/integration/targets/eos_config/tests/eapi/sublevel_block.yaml59
1 files changed, 0 insertions, 59 deletions
diff --git a/test/integration/targets/eos_config/tests/eapi/sublevel_block.yaml b/test/integration/targets/eos_config/tests/eapi/sublevel_block.yaml
deleted file mode 100644
index e8a05dda0d..0000000000
--- a/test/integration/targets/eos_config/tests/eapi/sublevel_block.yaml
+++ /dev/null
@@ -1,59 +0,0 @@
----
-- debug: msg="START eapi/sublevel_block.yaml"
-
-- name: setup
- eos_config:
- lines:
- - 10 permit ip host 192.0.2.1 any log
- - 20 permit ip host 192.0.2.2 any log
- - 30 permit ip host 192.0.2.3 any log
- parents: ip access-list test
- before: no ip access-list test
- match: none
- become: yes
-
-- name: configure sub level command using block resplace
- eos_config:
- lines:
- - 10 permit ip host 192.0.2.1 any log
- - 20 permit ip host 192.0.2.2 any log
- - 30 permit ip host 192.0.2.3 any log
- - 40 permit ip host 192.0.2.4 any log
- parents: ip access-list test
- after: end
- replace: block
- become: yes
- register: result
-
-- assert:
- that:
- - "result.changed == true"
- - "'ip access-list test' in result.updates"
- - "'10 permit ip host 192.0.2.1 any log' in result.updates"
- - "'20 permit ip host 192.0.2.2 any log' in result.updates"
- - "'30 permit ip host 192.0.2.3 any log' in result.updates"
- - "'40 permit ip host 192.0.2.4 any log' in result.updates"
-
-- name: check sub level command using block replace
- eos_config:
- lines:
- - 10 permit ip host 192.0.2.1 any log
- - 20 permit ip host 192.0.2.2 any log
- - 30 permit ip host 192.0.2.3 any log
- - 40 permit ip host 192.0.2.4 any log
- parents: ip access-list test
- replace: block
- become: yes
- register: result
-
-- assert:
- that:
- - "result.changed == false"
-
-- name: teardown
- eos_config:
- lines: no ip access-list test
- match: none
- become: yes
-
-- debug: msg="END eapi/sublevel_block.yaml"