summaryrefslogtreecommitdiff
path: root/test/integration/targets/tower_project/tasks/main.yml
diff options
context:
space:
mode:
authorPierre-Louis Bonicoli <pierre-louis.bonicoli@libregerbil.fr>2018-06-15 09:55:21 +0200
committerMichael Scherer <mscherer@users.noreply.github.com>2018-06-26 11:24:34 +0200
commit358c759bd9a5ff5b5c70576b690ffd255a07c9cb (patch)
treed87d049700b043e4c97b3d8e5a587d92015079ff /test/integration/targets/tower_project/tasks/main.yml
parent9acb5780bcff3a4e68fb1ee2a9fbcc38cab64515 (diff)
downloadansible-358c759bd9a5ff5b5c70576b690ffd255a07c9cb.tar.gz
test: manual tower projects don't require creds
Diffstat (limited to 'test/integration/targets/tower_project/tasks/main.yml')
-rw-r--r--test/integration/targets/tower_project/tasks/main.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/integration/targets/tower_project/tasks/main.yml b/test/integration/targets/tower_project/tasks/main.yml
index 0353977003..116cf967d1 100644
--- a/test/integration/targets/tower_project/tasks/main.yml
+++ b/test/integration/targets/tower_project/tasks/main.yml
@@ -25,3 +25,18 @@
- assert:
that:
- "result is changed"
+
+- name: create a project directory for manual project
+ import_tasks: create_project_dir.yml
+
+- name: Create a manual project
+ tower_project:
+ name: manual project
+ organization: Default
+ scm_type: manual
+ local_path: "manual_test_project"
+ register: result
+
+- assert:
+ that:
+ - "result is changed"