Removed all test cases.

This commit is contained in:
James Cole
2015-02-27 20:45:17 +01:00
parent d6cf7c4872
commit 4586c1ef52
45 changed files with 72 additions and 5011 deletions

View File

@@ -1,9 +0,0 @@
<?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);
}