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