Files
sxmo-utils/spec/scripts/core/sxmo_common_spec.sh
Anjandev Momi faf766cc43 add test to check if tests are ran with sxmo_common.sh loaded
This test checks if our tests are being ran with sxmo_common.sh loaded

Signed-off-by: Stacy Harper <contact@stacyharper.net>
2022-05-26 15:02:03 +02:00

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