Add multipart and url-encoded form mime types.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6744 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2007-05-15 23:57:16 +00:00
parent 9d1f1a8655
commit 73fbf7771b
2 changed files with 5 additions and 2 deletions

View File

@@ -13,5 +13,8 @@ Mime::Type.register "application/rss+xml", :rss
Mime::Type.register "application/atom+xml", :atom
Mime::Type.register "application/x-yaml", :yaml, %w( text/yaml )
Mime::Type.register "multipart/form-data", :multipart_form
Mime::Type.register "application/x-www-form-urlencoded", :url_encoded_form
# http://www.ietf.org/rfc/rfc4627.txt
Mime::Type.register "application/json", :json, %w( text/x-json )

View File

@@ -39,7 +39,7 @@ class MimeTypeTest < Test::Unit::TestCase
end
def test_type_convenience_methods
types = [:html, :xml, :png, :pdf, :yaml]
types = [:html, :xml, :png, :pdf, :yaml, :url_encoded_form]
types.each do |type|
mime = Mime.const_get(type.to_s.upcase)
assert mime.send("#{type}?"), "Mime::#{type.to_s.upcase} is not #{type}?"
@@ -51,4 +51,4 @@ class MimeTypeTest < Test::Unit::TestCase
assert Mime::ALL.all?, "Mime::ALL is not all?"
assert Mime::ALL.html?, "Mime::ALL is not html?"
end
end
end