mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
470 B
PHP
21 lines
470 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
class InstalledTest extends TestCase
|
|
{
|
|
/** @test */
|
|
public function nodeinfo_api()
|
|
{
|
|
$response = $this->get('/.well-known/nodeinfo');
|
|
$response->assertJson([
|
|
'links' => [
|
|
['rel' => 'http://nodeinfo.diaspora.software/ns/schema/2.0'],
|
|
], ]);
|
|
}
|
|
}
|