Whats your thought on writing a test step which checks that certain things are installed and in the right place? ``` testInstall() { if test ! "$(command -v brew)"; then echo "Brew is not installed" exit 1 fi } ```