summaryrefslogtreecommitdiff
path: root/test/integration/targets/tower_job_wait/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/tower_job_wait/tasks/main.yml')
-rw-r--r--test/integration/targets/tower_job_wait/tasks/main.yml26
1 files changed, 0 insertions, 26 deletions
diff --git a/test/integration/targets/tower_job_wait/tasks/main.yml b/test/integration/targets/tower_job_wait/tasks/main.yml
deleted file mode 100644
index 2ffc5bca3a..0000000000
--- a/test/integration/targets/tower_job_wait/tasks/main.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-- name: Launch a Job Template
- tower_job_launch:
- job_template: "Demo Job Template"
- inventory: "Demo Inventory"
- credential: "Demo Credential"
- register: job
-
-- assert:
- that:
- - "job is changed"
- - "job.status == 'pending'"
-
-- name: Wait for the Job to finish
- tower_job_wait:
- job_id: "{{ job.id }}"
- timeout: 60
-
-- name: Check module fails with correct msg
- tower_job_wait:
- job_id: "99999999"
- register: result
- ignore_errors: true
-
-- assert:
- that:
- - "result.msg =='Unable to wait, no job_id 99999999 found: The requested object could not be found.'" \ No newline at end of file