summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/cs_instancegroup
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/cs_instancegroup')
-rw-r--r--test/integration/targets/cs_instancegroup/aliases2
-rw-r--r--test/integration/targets/cs_instancegroup/meta/main.yml3
-rw-r--r--test/integration/targets/cs_instancegroup/tasks/main.yml79
3 files changed, 0 insertions, 84 deletions
diff --git a/test/integration/targets/cs_instancegroup/aliases b/test/integration/targets/cs_instancegroup/aliases
deleted file mode 100644
index c89c86d7d2..0000000000
--- a/test/integration/targets/cs_instancegroup/aliases
+++ /dev/null
@@ -1,2 +0,0 @@
-cloud/cs
-shippable/cs/group1
diff --git a/test/integration/targets/cs_instancegroup/meta/main.yml b/test/integration/targets/cs_instancegroup/meta/main.yml
deleted file mode 100644
index e9a5b9eeae..0000000000
--- a/test/integration/targets/cs_instancegroup/meta/main.yml
+++ /dev/null
@@ -1,3 +0,0 @@
----
-dependencies:
- - cs_common
diff --git a/test/integration/targets/cs_instancegroup/tasks/main.yml b/test/integration/targets/cs_instancegroup/tasks/main.yml
deleted file mode 100644
index 6ba31751be..0000000000
--- a/test/integration/targets/cs_instancegroup/tasks/main.yml
+++ /dev/null
@@ -1,79 +0,0 @@
----
-- name: setup
- cs_instancegroup: name={{ cs_resource_prefix }}_ig state=absent
- register: ig
-- name: verify setup
- assert:
- that:
- - ig is successful
-
-- name: test fail if missing name
- action: cs_instancegroup
- register: ig
- ignore_errors: true
-- name: verify results of fail if missing name
- assert:
- that:
- - ig is failed
- - "ig.msg == 'missing required arguments: name'"
-
-- name: test present instance group in check mode
- cs_instancegroup: name={{ cs_resource_prefix }}_ig
- register: ig
- check_mode: true
-- name: verify results of create instance group in check mode
- assert:
- that:
- - ig is successful
- - ig is changed
-
-- name: test present instance group
- cs_instancegroup: name={{ cs_resource_prefix }}_ig
- register: ig
-- name: verify results of create instance group
- assert:
- that:
- - ig is successful
- - ig is changed
- - ig.name == "{{ cs_resource_prefix }}_ig"
-
-- name: test present instance group is idempotence
- cs_instancegroup: name={{ cs_resource_prefix }}_ig
- register: ig
-- name: verify results present instance group is idempotence
- assert:
- that:
- - ig is successful
- - ig is not changed
- - ig.name == "{{ cs_resource_prefix }}_ig"
-
-- name: test absent instance group in check mode
- cs_instancegroup: name={{ cs_resource_prefix }}_ig state=absent
- register: ig
- check_mode: true
-- name: verify results of absent instance group in check mode
- assert:
- that:
- - ig is successful
- - ig is changed
- - ig.name == "{{ cs_resource_prefix }}_ig"
-
-- name: test absent instance group
- cs_instancegroup: name={{ cs_resource_prefix }}_ig state=absent
- register: ig
-- name: verify results of absent instance group
- assert:
- that:
- - ig is successful
- - ig is changed
- - ig.name == "{{ cs_resource_prefix }}_ig"
-
-- name: test absent instance group is idempotence
- cs_instancegroup: name={{ cs_resource_prefix }}_ig state=absent
- register: ig
-- name: verify results of absent instance group is idempotence
- assert:
- that:
- - ig is successful
- - ig is not changed
- - ig.name is undefined