OILS / soil / tests.sh View on Github | oilshell.org

20 lines, 7 significant
1#!/usr/bin/env bash
2#
3# Usage:
4# soil/tests.sh <function name>
5
6set -o nounset
7set -o pipefail
8set -o errexit
9
10source soil/common.sh
11
12# TODO:
13# - Use a proper test framework.
14# - Put this into soil/other-tests too!
15
16all() {
17 echo TODO
18}
19
20"$@"