97d2d4512f
* Separated ps module_util test targets, added WebRequest tests * Simplify header test
22 lines
413 B
YAML
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'
|