1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-22 05:09:12 +00:00

test helper unit tests: reformat YAML files (#9664)

This commit is contained in:
Alexei Znamensky 2025-02-01 23:16:03 +13:00 committed by GitHub
parent 4d384bd74a
commit 439da9e6da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 1611 additions and 1611 deletions

View file

@ -7,37 +7,37 @@
anchors:
environ: &env-def {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: true}
test_cases:
- id: test_simple_element_get
input:
key: /desktop/gnome/background/picture_filename
output:
value: '100'
mocks:
run_command:
- command: [/testbin/gconftool-2, --version]
environ: *env-def
rc: 0
out: "3.2.6\n"
err: ""
- command: [/testbin/gconftool-2, --get, /desktop/gnome/background/picture_filename]
environ: *env-def
rc: 0
out: "100\n"
err: ""
- id: test_simple_element_get_not_found
input:
key: /desktop/gnome/background/picture_filename
output:
value:
mocks:
run_command:
- command: [/testbin/gconftool-2, --version]
environ: *env-def
rc: 0
out: "3.2.6\n"
err: ""
- command: [/testbin/gconftool-2, --get, /desktop/gnome/background/picture_filename]
environ: *env-def
rc: 0
out: ""
err: "No value set for `/desktop/gnome/background/picture_filename'\n"
- id: test_simple_element_get
input:
key: /desktop/gnome/background/picture_filename
output:
value: '100'
mocks:
run_command:
- command: [/testbin/gconftool-2, --version]
environ: *env-def
rc: 0
out: "3.2.6\n"
err: ''
- command: [/testbin/gconftool-2, --get, /desktop/gnome/background/picture_filename]
environ: *env-def
rc: 0
out: "100\n"
err: ''
- id: test_simple_element_get_not_found
input:
key: /desktop/gnome/background/picture_filename
output:
value:
mocks:
run_command:
- command: [/testbin/gconftool-2, --version]
environ: *env-def
rc: 0
out: "3.2.6\n"
err: ''
- command: [/testbin/gconftool-2, --get, /desktop/gnome/background/picture_filename]
environ: *env-def
rc: 0
out: ''
err: "No value set for `/desktop/gnome/background/picture_filename'\n"