ansible/test/integration/targets/module_utils_Ansible.ModuleUtils.SID/tasks/main.yml
Jordan Borean 97d2d4512f
Separated ps module_util test targets, added WebRequest tests (#67914)
* Separated ps module_util test targets, added WebRequest tests

* Simplify header test
2020-03-02 16:12:08 +10:00

22 lines
413 B
YAML

---
- block:
- name: create test user with well know SID as the name
win_user:
name: S-1-0-0
password: AbcDef123!@#
state: present
- name: call module with SID tests
sid_utils_test:
sid_account: S-1-0-0
register: sid_test
always:
- name: remove test SID user
win_user:
name: S-1-0-0
state: absent
- assert:
that:
- sid_test.data == 'success'