mirror of
https://github.com/phpmon/website
synced 2025-12-21 11:20:07 +01:00
Added privacy policy, upgrades
This commit is contained in:
17
tests/Feature/PrivacyPolicyReachabilityTest.php
Normal file
17
tests/Feature/PrivacyPolicyReachabilityTest.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Tests\TestCase;
|
||||
|
||||
class PrivacyPolicyReachabilityTest extends TestCase
|
||||
{
|
||||
public function test_privacy_policy_is_reachable()
|
||||
{
|
||||
$response = $this->get('/privacy-policy');
|
||||
|
||||
$response->assertStatus(200);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user