All kinds of new stuff for Codeception, which isn't working at ALL

This commit is contained in:
James Cole
2014-12-06 19:47:43 +01:00
parent dbc95dd878
commit 07610ae8fb
21 changed files with 2247 additions and 17 deletions

View File

@@ -1,2 +1,8 @@
<?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');
}