firefly-iii/tests/_data/db.sh

5 lines
146 B
Bash
Raw Normal View History

2014-12-20 08:30:48 -06:00
#!/bin/bash
touch tests/_data/db.sqlite
php artisan migrate --seed --env=testing
sqlite3 tests/_data/db.sqlite .dump > tests/_data/dump.sql
2014-12-20 08:33:55 -06:00
exit 0