Skip to content

Commit 37f1e42

Browse files
committed
configuration for tests and seeders
1 parent 41fee77 commit 37f1e42

11 files changed

+54
-6
lines changed

.env.testing

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
APP_ENV=testing
2+
APP_KEY=base64:W2ToyfW8zHqtWfcZb1hp2kZgccbuy3XtERDyZywtVkE=
3+
APP_DEBUG=true
4+
APP_LOG_LEVEL=debug
5+
APP_URL=http://app.gitscrum.dev
6+
APP_TITLE=GitScrum
7+
APP_LANG=en
8+
9+
GITHUB_CLIENT_ID=
10+
GITHUB_CLIENT_SECRET=
11+
12+
GITLAB_KEY=
13+
GITLAB_SECRET=
14+
GITLAB_INSTANCE_URI=https://gitlab.com/
15+
16+
DB_CONNECTION=sqlite
17+
18+
APP_PAGINATE=10
19+
20+
PROXY_PORT=
21+
PROXY_METHOD=
22+
PROXY_SERVER=
23+
PROXY_USER=
24+
PROXY_PASS=

config/app.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
| the box, Laravel uses the Monolog PHP logging library. This gives
123123
| you a variety of powerful log handlers / formatters to utilize.
124124
|
125-
| Available Settings: "single", "daily", "syslog", "errorlog"
125+
| Available Setting: "single", "daily", "syslog", "errorlog"
126126
|
127127
*/
128128

config/database.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
'database' => ':memory:',
7070
'prefix' => '',
7171
],
72-
72+
7373
'mysql' => [
7474
'driver' => 'mysql',
7575
'host' => env('DB_HOST', 'localhost'),

config/debugbar.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
/*
1212
|--------------------------------------------------------------------------
13-
| Debugbar Settings
13+
| Debugbar Setting
1414
|--------------------------------------------------------------------------
1515
|
1616
| Debugbar is enabled by default, when debug is set to true in app.php.

database/seeds/DummySeeder.php

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php
2+
3+
use Illuminate\Database\Seeder;
4+
5+
class DummySeeder extends Seeder
6+
{
7+
/**
8+
* Run the database seeds.
9+
*/
10+
public function run()
11+
{
12+
(new SettingSeeder)->run();
13+
}
14+
15+
private function delete()
16+
{
17+
}
18+
}

database/seeds/DatabaseSeeder.php database/seeds/SettingSeeder.php

+8-3
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,22 @@
22

33
use Illuminate\Database\Seeder;
44

5-
class DatabaseSeeder extends Seeder
5+
class SettingSeeder extends Seeder
66
{
77
/**
88
* Run the database seeds.
99
*/
1010
public function run()
1111
{
12-
// $this->call(UsersTableSeeder::class);
12+
$this->delete();
1313
$this->call(ConfigIssueEffortsTableSeeder::class);
1414
$this->call(ConfigPrioritiesTableSeeder::class);
1515
$this->call(IssueTypesTableSeeder::class);
16-
$this->call('ConfigStatusesTableSeeder');
16+
$this->call(ConfigStatusesTableSeeder::class);
17+
}
18+
19+
private function delete()
20+
{
21+
1722
}
1823
}

tests/Features/JWTTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ class JwtAuthenticateTest extends TestCase
99
{
1010
public function testJwtAuthTest_Login()
1111
{
12+
$this->assertTrue(true);
1213
}
1314
}

0 commit comments

Comments
 (0)