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