14 lines
322 B
Bash
14 lines
322 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
export ANSIBLE_SHOW_CUSTOM_STATS=yes
|
||
|
|
||
|
# Simple tests
|
||
|
ansible-playbook test_simple.yml
|
||
|
|
||
|
# This playbook does two set_stats calls setting my_int to 10 and 15.
|
||
|
# The aggregated output should add to 25.
|
||
|
output=$(ansible-playbook test_aggregate.yml | grep -c '"my_int": 25')
|
||
|
test "$output" -eq 1
|