Files
sxmo-utils/spec/scripts/core/sxmo_common_spec.sh
ArenM 7e763717d4 Limit scripts in path for tests
shellspec adds spec/support/bin to the path, so we can put scripts that
should always be available here.

Also don't source sxmo_common.sh in the helper, if scripts don't do it
themselves we shouldn't do it for them in the tests.

Signed-off-by: Anjandev Momi <anjan@momi.ca>
2022-12-05 11:55:37 -08:00

10 lines
253 B
Bash

# This file is to investigate whether sxmo_common.sh is loaded in tests
Describe 'sxmo_common.sh'
It 'runs all tests with sxmo_common.sh loaded'
When call sh spec/helper/jq.sh
The output should equal 'gojq'
The status should be success
End
End