summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn R Barker <john@johnrbarker.com>2017-07-03 13:18:32 +0100
committerGitHub <noreply@github.com>2017-07-03 13:18:32 +0100
commit9d94a309ca5b2f5d1e531e3d083d685ff2cc1752 (patch)
treea1ac51900dc4f4d8273d79a13ab30bc6882e64fd
parent1ad1ad6ace2f22af39fb0af0a679620008679318 (diff)
downloadansible-9d94a309ca5b2f5d1e531e3d083d685ff2cc1752.tar.gz
Remove test of openvswitch_db state (#26349)
The `state:` option didn't exist in Ansible 2.3, so don't test it.
-rw-r--r--test/integration/targets/openvswitch_db/tests/basic.yaml27
1 files changed, 0 insertions, 27 deletions
diff --git a/test/integration/targets/openvswitch_db/tests/basic.yaml b/test/integration/targets/openvswitch_db/tests/basic.yaml
index d0c906b95e..0f6acdfa88 100644
--- a/test/integration/targets/openvswitch_db/tests/basic.yaml
+++ b/test/integration/targets/openvswitch_db/tests/basic.yaml
@@ -54,30 +54,3 @@
that:
- "result.changed == false"
-- name: Remove bridge
- openvswitch_db:
- table: Bridge
- record: br-test
- col: other_config
- key: disable-in-band
- value: false
- state: absent
- register: result
-
-- assert:
- that:
- - "result.changed == true"
-
-- name: Remove bridge again (idempotent)
- openvswitch_db:
- table: Bridge
- record: br-test
- col: other_config
- key: disable-in-band
- value: false
- state: absent
- register: result
-
-- assert:
- that:
- - "result.changed == false"