Added model not found error handler tests

This commit is contained in:
Kirk Bushell 2015-10-28 12:39:38 +00:00
parent b54f56a683
commit 52b75e4dd7

View File

@ -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());
}
}