<?php
include __DIR__.'/../src/Fleck/Http/Response.php';
class ResponseTest extends PHPUnit_Framework_TestCase
{
public function testCanCeateResponse()
{
$response = new Fleck\Http\Response();
$this->assertInstanceOf('Fleck\Http\Response', $response);
}
}