mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 00:03:10 +00:00
jenkins_job: extend integration tests (#17558)
This commit is contained in:
@@ -13,6 +13,21 @@
|
||||
that:
|
||||
- result|success
|
||||
|
||||
- name: test fail on missing params
|
||||
local_action:
|
||||
module: jenkins_job
|
||||
name: test.job
|
||||
url: "{{ jenkins_url }}"
|
||||
user: "{{ jenkins_user }}"
|
||||
password: "{{ jenkins_password }}"
|
||||
register: result
|
||||
ignore_errors: true
|
||||
- name: verify test fail on missing params
|
||||
assert:
|
||||
that:
|
||||
- result|failed
|
||||
- 'result.msg == "one of the following params is required on state=present: config,enabled"'
|
||||
|
||||
- name: test create a job
|
||||
local_action:
|
||||
module: jenkins_job
|
||||
|
||||
Reference in New Issue
Block a user