mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
18 lines
487 B
PHP
18 lines
487 B
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
class ProfileTest extends TestCase
|
|
{
|
|
use WithoutMiddleware, DatabaseTransactions;
|
|
|
|
public function testUpdate()
|
|
{
|
|
$this->actingAs(factory(User::class)->create())
|
|
->put('api/me', ['name' => 'Foo', 'email' => 'bar@baz.com']);
|
|
|
|
$this->seeInDatabase('users', ['name' => 'Foo', 'email' => 'bar@baz.com']);
|
|
}
|
|
}
|