babashka/script/lib_tests/deps_clj_test
Michiel Borkent 7ad6f3195f Lib tests
2020-02-19 23:58:58 +01:00

15 lines
300 B
Bash
Executable file

#!/usr/bin/env bash
set -eo pipefail
if [ "$BABASHKA_TEST_ENV" = "native" ]; then
BB_CMD="./bb"
else
BB_CMD="lein bb"
fi
curl -sL https://raw.githubusercontent.com/borkdude/deps.clj/master/deps.clj -o deps_test.clj
chmod +x deps_test.clj
$BB_CMD deps_test.clj -Sdescribe
rm deps_test.clj