mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
21 lines
612 B
Ruby
21 lines
612 B
Ruby
require 'abstract_unit'
|
|
|
|
class HeaderTest < ActiveSupport::TestCase
|
|
def setup
|
|
@headers = ActionDispatch::Http::Headers.new(
|
|
"HTTP_CONTENT_TYPE" => "text/plain"
|
|
)
|
|
end
|
|
|
|
test "content type" do
|
|
assert_equal "text/plain", @headers["Content-Type"]
|
|
assert_equal "text/plain", @headers["content-type"]
|
|
assert_equal "text/plain", @headers["CONTENT_TYPE"]
|
|
assert_equal "text/plain", @headers["HTTP_CONTENT_TYPE"]
|
|
end
|
|
|
|
test "fetch" do
|
|
assert_equal "text/plain", @headers.fetch("content-type", nil)
|
|
assert_equal "not found", @headers.fetch('not-found', 'not found')
|
|
end
|
|
end
|