summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos6_config/tests/cli/sublevel_block.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/dellos6_config/tests/cli/sublevel_block.yaml')
-rw-r--r--test/integration/targets/dellos6_config/tests/cli/sublevel_block.yaml62
1 files changed, 0 insertions, 62 deletions
diff --git a/test/integration/targets/dellos6_config/tests/cli/sublevel_block.yaml b/test/integration/targets/dellos6_config/tests/cli/sublevel_block.yaml
deleted file mode 100644
index 9b4f1d8907..0000000000
--- a/test/integration/targets/dellos6_config/tests/cli/sublevel_block.yaml
+++ /dev/null
@@ -1,62 +0,0 @@
----
-- debug: msg="START cli/sublevel_block.yaml"
-
-- name: setup
- dellos6_config:
- lines:
- - permit ip 192.0.2.1 0.0.0.0 any log
- - permit ip 192.0.2.2 0.0.0.0 any log
- - permit ip 192.0.2.3 0.0.0.0 any log
- parents: ['ip access-list test']
- before: ['no ip access-list test']
- after: ['exit']
- provider: "{{ cli }}"
- match: none
-
-- name: configure sub level command using block resplace
- dellos6_config:
- lines:
- - 1000 permit ip 192.0.2.1 0.0.0.0 any log
- - 1010 permit ip 192.0.2.2 0.0.0.0 any log
- - 1020 permit ip 192.0.2.3 0.0.0.0 any log
- - 1030 permit ip 192.0.2.4 0.0.0.0 any log
- parents: ['ip access-list test']
- replace: block
- after: ['exit']
- provider: "{{ cli }}"
- register: result
-
-- assert:
- that:
- - "result.changed == true"
- - "'ip access-list test' in result.updates"
- - "'1000 permit ip 192.0.2.1 0.0.0.0 any log' in result.updates"
- - "'1010 permit ip 192.0.2.2 0.0.0.0 any log' in result.updates"
- - "'1020 permit ip 192.0.2.3 0.0.0.0 any log' in result.updates"
- - "'1030 permit ip 192.0.2.4 0.0.0.0 any log' in result.updates"
-
-- name: check sub level command using block replace
- dellos6_config:
- lines:
- - 1000 permit ip 192.0.2.1 0.0.0.0 any log
- - 1010 permit ip 192.0.2.2 0.0.0.0 any log
- - 1020 permit ip 192.0.2.3 0.0.0.0 any log
- - 1030 permit ip 192.0.2.4 0.0.0.0 any log
- parents: ['ip access-list test']
- replace: block
- after: ['exit']
- provider: "{{ cli }}"
- register: result
-
-- assert:
- that:
- - "result.changed == false"
-
-- name: teardown
- dellos6_config:
- lines:
- - no ip access-list test
- match: none
- provider: "{{ cli }}"
-
-- debug: msg="END cli/sublevel_block.yaml"