public function testSingleResourceGet() { $app = new Bullet\App(); $app->resource('test', function () { return 'resource'; }); $res = $app->run(new Bullet\Request('GET', '/test/')); $this->assertEquals('resource', $res->content()); }