7 lines
322 B
Bash
7 lines
322 B
Bash
setup() { rm -rf foobar; }
|
|
teardown() { rm -rf foobar; ghc-pkg unregister foobar &>/dev/null; }
|
|
|
|
test_sqlite() { ../test/scaffold.sh < ../test/sqlite-input.txt ; }
|
|
test_postgresql() { ../test/scaffold.sh < ../test/postgresql-input.txt; }
|
|
test_mongodb() { ../test/scaffold.sh < ../test/mongodb-input.txt ; }
|