community.general/lib/ansible
Leonid Evdokimov d94395f48c assert: add optional msg argument
Sample playbook when it may be useful:
```
- uri: return_content=yes url={{ api_base }}/action/{{ inventory_hostname }}
  register: output
- assert:
    msg: '{{ output.json | to_nice_json }}'
    that:
      - output.json.foo != "bar"
      - output.json.boo == 42
```
2014-07-07 19:05:17 +04:00
..
callback_plugins Update various copyrights. Not complete, but sufficient. 2014-01-04 13:32:04 -05:00
inventory When parsing json from untrusted sources, remove templating tags 2014-07-01 14:14:14 -05:00
module_utils Revert "Fix get_distribution() for platforms that may have spaces" 2014-07-02 09:44:44 -05:00
playbook Add role_names to valid keys entry for plays 2014-06-16 10:00:43 -05:00
runner assert: add optional msg argument 2014-07-07 19:05:17 +04:00
utils When parsing json from untrusted sources, remove templating tags 2014-07-01 14:14:14 -05:00
__init__.py Version bump for 1.7 2014-05-05 16:37:46 -05:00
callbacks.py fix UnicodeEncodeError when prompt is unicode. 2014-05-21 23:43:19 +09:00
color.py Merge commit. 2014-03-16 17:08:26 -04:00
constants.py Change safe_eval to a strict white list 2014-06-25 14:00:21 -05:00
errors.py Update various copyrights. Not complete, but sufficient. 2014-01-04 13:32:04 -05:00
module_common.py Revise documentation on powershell module replacer code. 2014-06-19 14:24:13 -05:00