1#!/bin/sh 2 3assert_empty() { 4 test "$1" = "" 5} 6 7assert_success() { 8 test $1 = 0 9} 10 11runit() { 12 ${COMMAND} 2>&1 $@ 13} 14 15 16