summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/strategy_free/runme.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/strategy_free/runme.sh')
-rwxr-xr-xtest/integration/targets/strategy_free/runme.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/integration/targets/strategy_free/runme.sh b/test/integration/targets/strategy_free/runme.sh
new file mode 100755
index 0000000..f5b912c
--- /dev/null
+++ b/test/integration/targets/strategy_free/runme.sh
@@ -0,0 +1,10 @@
+#!/usr/bin/env bash
+
+set -eux
+
+export ANSIBLE_STRATEGY=free
+
+set +e
+result="$(ansible-playbook test_last_include_in_always.yml -i inventory "$@" 2>&1)"
+set -e
+grep -q "INCLUDED TASK EXECUTED" <<< "$result"