lightning-runner/test/test-run
2021-12-20 18:42:18 -08:00

18 lines
306 B
Bash
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env bash
testDefiningALightningFunctionWorks() {
echo '
#!/usr/bin/env bash
hello() { echo "Hello, World!" ; }
' > go
echo "source $(dirname $BASH_SOURCE)/../⚡️" >> go
chmod +x go
try ./go hello
assertEquals "Hello, World!" "$STDOUT"
}
source $(dirname $0)/runner