16 lines
365 B
YAML
16 lines
365 B
YAML
---
|
|
|
|
- name: test if vagrant_version is set correctly
|
|
ansible.builtin.assert:
|
|
that:
|
|
- vagrant_version is defined
|
|
- vagrant_version is string
|
|
quiet: yes
|
|
|
|
- name: test if vagrant_unarchive_dest is set correctly
|
|
ansible.builtin.assert:
|
|
that:
|
|
- vagrant_unarchive_dest is defined
|
|
- vagrant_unarchive_dest is string
|
|
quiet: yes
|