diff options
Diffstat (limited to 'test/integration/targets/pause/pause-4.yml')
-rw-r--r-- | test/integration/targets/pause/pause-4.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/integration/targets/pause/pause-4.yml b/test/integration/targets/pause/pause-4.yml new file mode 100644 index 00000000..f16c7d67 --- /dev/null +++ b/test/integration/targets/pause/pause-4.yml @@ -0,0 +1,13 @@ +- name: Test pause module with pause and custom prompt + hosts: localhost + become: no + gather_facts: no + + tasks: + - name: EXPECTED FAILURE + pause: + seconds: 2 + prompt: Waiting for two seconds + + - debug: + msg: Task after pause |