Use test-runner.sh instead of homegrown test.sh

This commit is contained in:
2014-05-26 13:44:08 +01:00
parent 47ce28bba6
commit f3e0f666cb
21 changed files with 35 additions and 42 deletions

21
test/__stub_index.test.sh Executable file
View File

@@ -0,0 +1,21 @@
#! /usr/bin/env bash
source "test-helper.sh"
#
# __stub_index() tests.
#
# Echoes index of given stub.
STUB_INDEX=("uname=1" "top=3")
assert '__stub_index "uname"' "1"
assert '__stub_index "top"' "3"
unset STUB_INDEX
# Echoes nothing if stub is not in the index.
STUB_INDEX=("uname=1")
assert '__stub_index "top"' ""
unset STUB_INDEX
# End of tests.
assert_end "__stub_index()"