mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-06 12:49:54 +00:00
wip tests
This commit is contained in:
15
tests/TestCase.php
Normal file
15
tests/TestCase.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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:'
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user