
This test checks if our tests are being ran with sxmo_common.sh loaded Signed-off-by: Stacy Harper <contact@stacyharper.net>
16 lines
369 B
Bash
16 lines
369 B
Bash
#!/bin/sh
|
|
|
|
# shellcheck disable=SC2155
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright 2022 Sxmo Contributors
|
|
|
|
# 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
|