From a2ad945627c71b207d9f2c3ec9a3e7512b45b01d Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Tue, 1 Apr 2008 06:11:48 +0000 Subject: style & whitespace git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9189 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/controller/integration_upload_test.rb | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'actionpack/test') diff --git a/actionpack/test/controller/integration_upload_test.rb b/actionpack/test/controller/integration_upload_test.rb index 0968ae6845..33df1131cb 100644 --- a/actionpack/test/controller/integration_upload_test.rb +++ b/actionpack/test/controller/integration_upload_test.rb @@ -23,11 +23,9 @@ class SessionUploadTest < ActionController::IntegrationTest attr_accessor :last_request_type end - # def setup # @session = ActionController::Integration::Session.new # end - # def test_post_with_upload uses_mocha "test_post_with_upload" do Dependencies.stubs(:load?).returns(false) @@ -35,13 +33,11 @@ class SessionUploadTest < ActionController::IntegrationTest set.draw do |map| map.update 'update', :controller => "upload_test", :action => "update", :method => :post end - path = "/update" - params = {:uploaded_data => fixture_file_upload(FILES_DIR + "/mona_lisa.jpg", "image/jpg")} - headers = {:location => 'blah' } - post(path,params,headers) + + params = { :uploaded_data => fixture_file_upload(FILES_DIR + "/mona_lisa.jpg", "image/jpg") } + post '/update', params, :location => 'blah' assert_equal(:multipart_form, SessionUploadTest.last_request_type) end end - end -end \ No newline at end of file +end -- cgit v1.2.3