mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-06-05 09:34:37 +08:00
18
tests/ErrorTest.php
Normal file
18
tests/ErrorTest.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php namespace Tests;
|
||||
|
||||
class ErrorTest extends TestCase
|
||||
{
|
||||
|
||||
public function test_404_page_does_not_show_login()
|
||||
{
|
||||
// Due to middleware being handled differently this will not fail
|
||||
// if our custom, middleware-loaded handler fails but this is here
|
||||
// as a reminder and as a general check in the event of other issues.
|
||||
$editor = $this->getEditor();
|
||||
$this->actingAs($editor);
|
||||
$notFound = $this->get('/fgfdngldfnotfound');
|
||||
$notFound->assertStatus(404);
|
||||
$notFound->assertDontSeeText('Log in');
|
||||
$notFound->assertSeeText($editor->getShortName(9));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user