db test and Travis CI integration

This commit is contained in:
Bubka
2019-05-23 14:02:29 +02:00
parent 85fc616899
commit 507f2677dd
5 changed files with 43 additions and 13 deletions

View File

@@ -13,9 +13,9 @@ class UsersTableSeeder extends Seeder
public function run()
{
User::create([
'name' => 'bubka',
'email' => 'edouard@ganeau.me',
'password' => bcrypt('bubka'),
'name' => 'testLogin',
'email' => 'test@test.com',
'password' => bcrypt('test'),
]);
}
}