firefly-iii/tests/functional/_bootstrap.php
2015-01-02 06:16:49 +01:00

9 lines
266 B
PHP

<?php
$db = realpath(__DIR__ . '/../_data') . '/db.sqlite';
if (!file_exists($db)) {
$out = [];
exec('touch ' . $db);
exec('php artisan migrate --seed --env=testing', $out);
exec('sqlite3 tests/_data/db.sqlite .dump > tests/_data/dump.sql', $out);
}