This commit is contained in:
jeffreyguo 2016-01-28 08:31:29 +00:00
commit c671483d86
1 changed files with 8 additions and 0 deletions

View File

@ -345,6 +345,14 @@ class TestSessionEnvironment extends Object {
$this->extend('onBeforeEndTestSession');
if(SapphireTest::using_temp_db()) {
$dbConn = DB::getConn();
$dbExists = $dbConn->databaseExists($state->database);
if($dbExists) {
// Clean up temp database
$dbConn->dropDatabase();
file_put_contents('php://stdout', "Deleted temp database: $state->database" . PHP_EOL);
}
// End test session mode
$this->resetDatabaseName();
SapphireTest::set_is_running_test(false);