This adopts old functional tests to be launched with molecule. Patch does not intend to extend or refactor set of existing tests, but to provide a baseline to iterate on and ability to improve coverage with important usecases. Change-Id: Ia93b5adb313d5b930086ce90dafe6a63da092aba Signed-off-by: Dmitriy Rabotyagov <dmitriy.rabotyagov@cleura.com>
10 lines
293 B
YAML
10 lines
293 B
YAML
---
|
|
- name: Testing result after role re-run
|
|
hosts: service_hosts
|
|
tasks:
|
|
- name: Ensure the absent service is present
|
|
ansible.builtin.stat:
|
|
path: "/etc/haproxy/conf.d/test_absent_service"
|
|
register: absent_services
|
|
failed_when: not absent_services.stat.exists
|