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.
15 lines
314 B
YAML
15 lines
314 B
YAML
8 years ago
|
---
|
||
|
# Test a non-updating repo query with no destination specified
|
||
|
|
||
|
- name: get info on a repo without updating and with no destination specified
|
||
|
git:
|
||
|
repo: '{{ repo_dir }}/minimal'
|
||
|
update: no
|
||
|
clone: no
|
||
|
accept_hostkey: yes
|
||
|
register: git_result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- 'git_result.changed'
|