WIP encoding test

This commit is contained in:
Thomas Reynolds 2016-01-10 17:24:43 -08:00
parent c6401f1cd9
commit 98fe7ce7d2

View file

@ -9,15 +9,20 @@ Feature: encoding option
Then the "Content-Type" header should contain "text/html" Then the "Content-Type" header should contain "text/html"
Then the "Content-Type" header should contain "charset=utf-8" Then the "Content-Type" header should contain "charset=utf-8"
@wip
Scenario: Custom encoding set Scenario: Custom encoding set
Given a fixture app "i-8859-1-app" Given a fixture app "i-8859-1-app"
And a file named "config.rb" with: And a file named "config.rb" with:
""" """
set :encoding, "ISO-8859-1" set :encoding, "ISO-8859-1"
::Rack::Mime::MIME_TYPES['.html'] = 'text/html; charset=iso-8859-1'
::Rack::Mime::MIME_TYPES['.htm'] = 'text/html; charset=iso-8859-1'
::Rack::Mime::MIME_TYPES['.map'] = 'application/json; charset=iso-8859-1'
""" """
Given the Server is running at "i-8859-1-app" Given the Server is running at "i-8859-1-app"
When I go to "/index.html" When I go to "/index.html"
Then the "Content-Type" header should contain "text/html" Then the "Content-Type" header should contain "text/html"
Then the "Content-Type" header should contain "charset=iso-8859-1" Then the "Content-Type" header should contain "charset=iso-8859-1"
Then I should see "äöü" Then I should see "äöü"