mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-01-30 14:46:33 +00:00
15 lines
371 B
PHP
15 lines
371 B
PHP
<?php
|
|
|
|
namespace distinctm\LaravelDataSync\Tests;
|
|
|
|
class TestCase extends \Orchestra\Testbench\TestCase
|
|
{
|
|
protected function getEnvironmentSetUp($app)
|
|
{
|
|
$app['config']->set('database.default', 'testdb');
|
|
$app['config']->set('database.connections.testdb', [
|
|
'driver' => 'sqlite',
|
|
'database' => ':memory:'
|
|
]);
|
|
}
|
|
} |