summary refs log tree commit
path: root/test/spec_multipart.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/spec_multipart.rb')
-rw-r--r--test/spec_multipart.rb22
1 files changed, 3 insertions, 19 deletions
diff --git a/test/spec_multipart.rb b/test/spec_multipart.rb
index 959a5cff..2acb6e0d 100644
--- a/test/spec_multipart.rb
+++ b/test/spec_multipart.rb
@@ -230,15 +230,12 @@ describe Rack::Multipart do
     params["files"][:tempfile].read.should.equal "contents"
   end
 
-  # n.b. this case used to be "do not include", but because ie11 now does this
-  # for selected files, that can no longer be done. It was decided that not
-  # losing data is better, and no browser is documented with this behavior.
-  should "include file params if no file was selected" do
+  should "not include file params if no file was selected" do
     env = Rack::MockRequest.env_for("/", multipart_fixture(:none))
     params = Rack::Multipart.parse_multipart(env)
     params["submit-name"].should.equal "Larry"
-    params["files"].should.not.equal nil
-    params.keys.should.include "files"
+    params["files"].should.equal nil
+    params.keys.should.not.include "files"
   end
 
   should "parse multipart/mixed" do
@@ -270,19 +267,6 @@ describe Rack::Multipart do
     params["files"][:tempfile].read.should.equal "contents"
   end
 
-  should "parse IE11 multipart upload" do
-    env = Rack::MockRequest.env_for("/", multipart_fixture(:ie11))
-    params = Rack::Multipart.parse_multipart(env)
-    params["files"][:type].should.equal "text/plain"
-    params["files"][:filename].should.equal "files"
-    params["files"][:head].should.equal "Content-Disposition: form-data; " +
-      "name=\"files\"; " +
-      'filename=""' +
-      "\r\nContent-Type: text/plain\r\n"
-    params["files"][:name].should.equal "files"
-    params["files"][:tempfile].read.should.equal "contents"
-  end
-
   should "parse filename and modification param" do
     env = Rack::MockRequest.env_for("/", multipart_fixture(:filename_and_modification_param))
     params = Rack::Multipart.parse_multipart(env)