8 lines
192 B
Bash
8 lines
192 B
Bash
#!/usr/bin/env bash
|
|
# Fixture hook for tests/inventory.test.sh — checks FIXTURE_ENV_VAR via fixture_check.
|
|
set -euo pipefail
|
|
fixture_check() {
|
|
[ -n "${FIXTURE_ENV_VAR:-}" ]
|
|
}
|
|
fixture_check
|