1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-05-02 08:22:52 +00:00

test helper: adjusted unit tests using new features (#9563)

This commit is contained in:
Alexei Znamensky 2025-01-12 17:40:48 +13:00 committed by GitHub
parent 568fcea15e
commit 3dcac2b030
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 88 additions and 48 deletions

View file

@ -4,6 +4,10 @@
# SPDX-License-Identifier: GPL-3.0-or-later
---
anchors:
environ_true: &env-def-true {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: true}
environ_false: &env-def-false {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
test_cases:
- id: install_dancer_compatibility
input:
name: Dancer
@ -14,14 +18,14 @@
mocks:
run_command:
- command: [/testbin/cpanm, --version]
environ: &env-def-true {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: true}
environ: *env-def-true
rc: 0
out: |
cpanm (App::cpanminus) version 1.7047 (/usr/local/bin/cpanm)
perl version 5.041005 (/usr/local/bin/perl)
err: ""
- command: [/testbin/perl, -le, 'use Dancer;']
environ: &env-def-false {environ_update: {LANGUAGE: C, LC_ALL: C}, check_rc: false}
environ: *env-def-false
rc: 2
out: ""
err: "error, not installed"