summaryrefslogtreecommitdiff
path: root/test/integration/targets/tasks/playbook.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/tasks/playbook.yml')
-rw-r--r--test/integration/targets/tasks/playbook.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/integration/targets/tasks/playbook.yml b/test/integration/targets/tasks/playbook.yml
new file mode 100644
index 0000000000..04f0421716
--- /dev/null
+++ b/test/integration/targets/tasks/playbook.yml
@@ -0,0 +1,12 @@
+- hosts: localhost
+ gather_facts: false
+ tasks:
+ # make sure tasks with an undefined variable in the name are gracefully handled
+ - name: "Task name with undefined variable: {{ not_defined }}"
+ debug:
+ msg: Hello
+
+ # ensure we properly test for an action name, not a task name when cheking for a meta task
+ - name: "meta"
+ debug:
+ msg: Hello \ No newline at end of file