summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_l3_interfaces/tests/cli/empty_config.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/vyos_l3_interfaces/tests/cli/empty_config.yaml')
-rw-r--r--test/integration/targets/vyos_l3_interfaces/tests/cli/empty_config.yaml36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/integration/targets/vyos_l3_interfaces/tests/cli/empty_config.yaml b/test/integration/targets/vyos_l3_interfaces/tests/cli/empty_config.yaml
deleted file mode 100644
index 4859dca2ec..0000000000
--- a/test/integration/targets/vyos_l3_interfaces/tests/cli/empty_config.yaml
+++ /dev/null
@@ -1,36 +0,0 @@
----
-- debug:
- msg: "START vyos_l3_interfaces empty_config integration tests on connection={{ ansible_connection }}"
-
-- name: Merged with empty config should give appropriate error message
- vyos_l3_interfaces:
- config:
- state: merged
- register: result
- ignore_errors: true
-
-- assert:
- that:
- - result.msg == 'value of config parameter must not be empty for state merged'
-
-- name: Replaced with empty config should give appropriate error message
- vyos_l3_interfaces:
- config:
- state: replaced
- register: result
- ignore_errors: true
-
-- assert:
- that:
- - result.msg == 'value of config parameter must not be empty for state replaced'
-
-- name: Overridden with empty config should give appropriate error message
- vyos_l3_interfaces:
- config:
- state: overridden
- register: result
- ignore_errors: true
-
-- assert:
- that:
- - result.msg == 'value of config parameter must not be empty for state overridden'