-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTestCase.php
More file actions
32 lines (25 loc) · 765 Bytes
/
TestCase.php
File metadata and controls
32 lines (25 loc) · 765 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
namespace Pharaonic\Laravel\Sluggable\Tests;
use Orchestra\Testbench\TestCase as OrchestraTestCase;
use Pharaonic\Laravel\Sluggable\SluggableServiceProvider;
class TestCase extends OrchestraTestCase
{
protected function setUp(): void
{
parent::setUp();
$this->loadMigrationsFrom(__DIR__ . '/database/migrations');
}
protected function getEnvironmentSetUp($app)
{
$app['config']->set('database.default', 'testing');
$app['config']->set('database.connections.testing', [
'driver' => 'sqlite',
'database' => ':memory:',
'prefix' => '',
]);
}
protected function getPackageProviders($app)
{
return [SluggableServiceProvider::class];
}
}