summaryrefslogtreecommitdiff
path: root/test/integration/targets/hash/test_hash.yml
diff options
context:
space:
mode:
authorMatt Clay <matt@mystile.com>2016-10-12 14:57:53 -0700
committerGitHub <noreply@github.com>2016-10-12 14:57:53 -0700
commit80a5c70ad795f3cd1e6e3edde7077a8dfd65470b (patch)
tree50ab0ad670d2631fa32cad47019d9a970ed81596 /test/integration/targets/hash/test_hash.yml
parentbf3d546d9a48cf5391a91002733d4a6ea62b1a0c (diff)
downloadansible-80a5c70ad795f3cd1e6e3edde7077a8dfd65470b.tar.gz
Split integration tests out from Makefile. (#17976)
Diffstat (limited to 'test/integration/targets/hash/test_hash.yml')
-rw-r--r--test/integration/targets/hash/test_hash.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/integration/targets/hash/test_hash.yml b/test/integration/targets/hash/test_hash.yml
new file mode 100644
index 0000000000..271563355b
--- /dev/null
+++ b/test/integration/targets/hash/test_hash.yml
@@ -0,0 +1,20 @@
+---
+- hosts: testhost
+ vars_files:
+ - vars/test_hash_vars.yml
+ vars:
+ test_hash:
+ playbook_vars: "this is a playbook variable"
+ replaced_hash:
+ extra_args: "this is an extra arg"
+ merged_hash:
+ default_vars: "this is in role defaults/main.yml"
+ extra_args: "this is an extra arg"
+ group_vars_all: "this is in group_vars/all"
+ host_vars_testhost: "this is in host_vars/testhost"
+ playbook_vars: "this is a playbook variable"
+ role_argument: "this is a role argument variable"
+ role_vars: "this is in role vars/main.yml"
+ vars_file: "this is in a vars_file"
+ roles:
+ - { role: test_hash_behavior, test_hash: {'role_argument':'this is a role argument variable'} }