mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
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');
|
||
|
}
|
||
|
}
|