summaryrefslogtreecommitdiffstats
path: root/tests/common.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/common.sh')
-rw-r--r--tests/common.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/common.sh b/tests/common.sh
index 83cb42a..350ae53 100644
--- a/tests/common.sh
+++ b/tests/common.sh
@@ -19,30 +19,8 @@
BUILDDIR="${PWD}/.."
-# The "common" module is used by all library modules.
-# We have to manually load the "common" module so we can use it in ob_use.
. "${BUILDDIR}/lib/libopkbuild.shso.1"
-ob_use()
-{
- local module=
-
- if [ "${#}" -eq 1 ]; then
- module="${1}"
- else
- return 125
- fi
-
- module="${BUILDDIR}/lib/${module}.sho"
- if [ -r "${module}" ]; then
- : . "${module}"
- else
- return 1
- fi
-
- return 0
-}
-
test_assert()
{
eval "${*}"