mirror of
https://github.com/flarum/framework.git
synced 2025-01-19 18:12:59 +08:00
Added model not found error handler tests
This commit is contained in:
parent
b54f56a683
commit
52b75e4dd7
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
namespace Tests\Flarum\Api\Handler;
|
||||
|
||||
use Flarum\Api\Handler\ModelNotFoundExceptionHandler;
|
||||
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
||||
use Tests\Test\TestCase;
|
||||
|
||||
class ModelNotFoundExceptionHandlerTest extends TestCase
|
||||
{
|
||||
private $handler;
|
||||
|
||||
public function init()
|
||||
{
|
||||
$this->handler = new ModelNotFoundExceptionHandler;
|
||||
}
|
||||
|
||||
public function test_it_handles_recognisable_exceptions()
|
||||
{
|
||||
$this->assertFalse($this->handler->manages(new \Exception));
|
||||
$this->assertTrue($this->handler->manages(new ModelNotFoundException));
|
||||
}
|
||||
|
||||
public function test_managing_exceptions()
|
||||
{
|
||||
$response = $this->handler->handle(new ModelNotFoundException);
|
||||
|
||||
$this->assertEquals(404, $response->getStatus());
|
||||
$this->assertEquals([[]], $response->getErrors());
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user