3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-08 04:55:53 +00:00
Files
snipe-it/tests/Feature/Settings/AlertsSettingTest.php
2024-10-09 19:46:47 +01:00

30 lines
827 B
PHP

<?php
namespace Tests\Feature\Settings;
use Tests\TestCase;
use App\Models\User;
class AlertsSettingTest extends TestCase
{
public function testPermissionRequiredToViewAlertSettings()
{
$this->actingAs(User::factory()->create())
->get(route('settings.alerts.index'))
->assertForbidden();
}
public function testAdminCCEmailArrayCanBeSaved()
{
$response = $this->actingAs(User::factory()->superuser()->create())
->post(route('settings.alerts.save', ['alert_email' => 'me@example.com,you@example.com']))
->assertStatus(302)
->assertValid('alert_email')
->assertRedirect(route('settings.index'))
->assertSessionHasNoErrors();
$this->followRedirects($response)->assertSee('alert-success');
}
}