mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-08 09:26:42 +00:00
a2fd80954b
For #4907
25 lines
694 B
PHP
25 lines
694 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
class LicensesTest extends TestCase
|
|
{
|
|
public function test_licenses_endpoint()
|
|
{
|
|
$resp = $this->get('/licenses');
|
|
$resp->assertOk();
|
|
$resp->assertSee('Licenses');
|
|
$resp->assertSee('PHP Library Licenses');
|
|
$resp->assertSee('Dan Brown and the BookStack Project contributors');
|
|
$resp->assertSee('doctrine/dbal');
|
|
$resp->assertSee('@codemirror/lang-html');
|
|
}
|
|
|
|
public function test_licenses_linked_to_from_settings()
|
|
{
|
|
$resp = $this->asAdmin()->get('/settings/features');
|
|
$html = $this->withHtml($resp);
|
|
$html->assertLinkExists(url('/licenses'), 'License Details');
|
|
}
|
|
}
|