mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
322 B
Bash
14 lines
322 B
Bash
4 years ago
|
#!/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
|