summaryrefslogtreecommitdiff
path: root/test/integration/targets/tower_job_list/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/tower_job_list/tasks/main.yml')
-rw-r--r--test/integration/targets/tower_job_list/tasks/main.yml20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/integration/targets/tower_job_list/tasks/main.yml b/test/integration/targets/tower_job_list/tasks/main.yml
deleted file mode 100644
index 63c6061f46..0000000000
--- a/test/integration/targets/tower_job_list/tasks/main.yml
+++ /dev/null
@@ -1,20 +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: List jobs w/ a matching primary key
- tower_job_list:
- query: {"id": "{{ job.id }}"}
- register: matching_jobs
-
-- assert:
- that:
- - "{{ matching_jobs.count }} == 1"