summaryrefslogtreecommitdiffstats
path: root/test/schemas/test/playbooks/block.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/schemas/test/playbooks/block.yml')
-rw-r--r--test/schemas/test/playbooks/block.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/schemas/test/playbooks/block.yml b/test/schemas/test/playbooks/block.yml
new file mode 100644
index 0000000..631242b
--- /dev/null
+++ b/test/schemas/test/playbooks/block.yml
@@ -0,0 +1,10 @@
+- hosts: localhost
+ tasks:
+ - debug:
+ msg: task under no block
+ - block:
+ - debug:
+ msg: task under one level of block
+ - block:
+ - debug:
+ msg: task under two levels of block