mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Remove CostarTest
This commit is contained in:
parent
d3fef01786
commit
5f73b08fd3
1 changed files with 0 additions and 24 deletions
|
@ -1,24 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace Tests\Unit;
|
||||
|
||||
use App\Util\ActivityPub\Helpers;
|
||||
use Tests\TestCase;
|
||||
use Illuminate\Foundation\Testing\WithFaker;
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
|
||||
class CostarTest extends TestCase
|
||||
{
|
||||
/** @test */
|
||||
public function blockedDomain()
|
||||
{
|
||||
$domains = config('costar.domain.block');
|
||||
$this->assertTrue(in_array('example.net', $domains));
|
||||
|
||||
$blockedDomain = 'https://example.org/user/replyGuy';
|
||||
$this->assertFalse(Helpers::validateUrl($blockedDomain));
|
||||
|
||||
$unblockedDomain = 'https://pixelfed.org/user/pixelfed';
|
||||
$this->assertEquals(Helpers::validateUrl($unblockedDomain), $unblockedDomain);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue