firefly-iii/tests/_bootstrap.php

9 lines
216 B
PHP
Raw Normal View History

2014-11-26 14:31:12 -06:00
<?php
// This is global bootstrap for autoloading
$db = realpath(__DIR__ . '/_data') . '/testing.sqlite';
if (!file_exists($db)) {
exec('touch ' . $db);
exec('php artisan migrate --seed --env=testing');
}