Receive Frank::Context and allow setting content-type

This commit is contained in:
Ary Borenszweig 2014-07-30 20:50:14 -03:00
parent fc4f648c1a
commit 889debfd59
6 changed files with 41 additions and 14 deletions

View file

@ -10,4 +10,14 @@ describe "Frank::Handler" do
response = frank.call(request)
response.body.should eq("hello")
end
it "sets content type" do
frank = Frank::Handler.new
frank.add_route "GET", "/" do |env|
env.response.content_type = "application/json"
end
request = HTTP::Request.new("GET", "/")
response = frank.call(request)
response.headers["Content-Type"].should eq("application/json")
end
end