Enabled session in 404 responses

Fixes #634
This commit is contained in:
Dan Brown
2017-12-28 13:19:02 +00:00
parent 8b160b9fb4
commit afe781bc39
6 changed files with 55 additions and 5 deletions

18
tests/ErrorTest.php Normal file
View 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));
}
}