29 lines
723 B
PHP
29 lines
723 B
PHP
<?php
|
|
|
|
namespace Tests\Feature\Auth;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use Tests\TestCase;
|
|
|
|
class ProfileInformationTest extends TestCase
|
|
{
|
|
use DatabaseTransactions;
|
|
|
|
#[Test]
|
|
public function profile_information_can_be_updated()
|
|
{
|
|
$this->actingAs($user = User::factory()->create());
|
|
|
|
$response = $this->put('/user/profile-information', [
|
|
'first_name' => 'Test',
|
|
'last_name' => 'Name',
|
|
'email' => 'test@example.com',
|
|
]);
|
|
|
|
$this->assertEquals('Test Name', $user->fresh()->name);
|
|
$this->assertEquals('test@example.com', $user->fresh()->email);
|
|
}
|
|
}
|