firefly-iii/tests/_bootstrap.php

10 lines
317 B
PHP
Raw Normal View History

2014-11-26 14:31:12 -06:00
<?php
$db = realpath(__DIR__ . '/_data') . '/db.sqlite';
$dump = realpath(__DIR__ . '/_data') . '/dump.sql';
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);
2014-12-20 08:25:22 -06:00
}