<?php
include __DIR__.'/../src/Fleck/Http/Headers.php';
class HeadersTest extends PHPUnit_Framework_TestCase
{
public function testCanCeateHeaders()
{
$headers = new Fleck\Http\Headers();
$this->assertInstanceOf('Fleck\Http\Headers', $headers);
}
}