我在末日應用程序中使用如何使用rspec在sinatra應用程序中「測試」響應字符集是否爲utf-8?
before do
content_type "text/html", :charset => "utf-8"
end
。
如何檢查此功能是否適用於我的rspec
測試?
我雖然它應該是這樣的:
it "should be utf-8 encoded" do
get '/'
last_response.body.encoding.should == 'utf-8'
end
但encoding
不會返回一個字符串。
謝謝,你會解釋第二個代碼片段嗎? – Ali 2012-02-05 00:19:45