Class: Capybara::RackTest::Form::NilUploadedFile
- Inherits:
-
Rack::Test::UploadedFile
- Object
- Rack::Test::UploadedFile
- Capybara::RackTest::Form::NilUploadedFile
- Defined in:
- lib/capybara/rack_test/form.rb
Overview
This only needs to inherit from Rack::Test::UploadedFile because Rack::Test checks for the class specifically when determing whether to consturct the request as multipart. That check should be based solely on the form element’s ‘enctype’ attribute value, which should probably be provided to Rack::Test in its non-GET request methods.
Instance Method Summary collapse
- #content_type ⇒ Object
-
#initialize ⇒ NilUploadedFile
constructor
A new instance of NilUploadedFile.
- #original_filename ⇒ Object
- #path ⇒ Object
Constructor Details
#initialize ⇒ NilUploadedFile
Returns a new instance of NilUploadedFile.
7 8 9 10 |
# File 'lib/capybara/rack_test/form.rb', line 7 def initialize @empty_file = Tempfile.new("nil_uploaded_file") @empty_file.close end |
Instance Method Details
#content_type ⇒ Object
13 |
# File 'lib/capybara/rack_test/form.rb', line 13 def content_type; "application/octet-stream"; end |
#original_filename ⇒ Object
12 |
# File 'lib/capybara/rack_test/form.rb', line 12 def original_filename; ""; end |
#path ⇒ Object
14 |
# File 'lib/capybara/rack_test/form.rb', line 14 def path; @empty_file.path; end |