diff options
author | Ben Woosley <ben.woosley@gmail.com> | 2012-11-26 04:18:18 -0600 |
---|---|---|
committer | Ben Woosley <ben.woosley@gmail.com> | 2012-11-26 17:50:57 -0600 |
commit | 8b104e2f0cb6e92604185f7a4934acad80142f2a (patch) | |
tree | 58ba66053164ef337799e182690f92312443848c /actionpack/lib | |
parent | d23c761f5a514e10676aa3e0e1632946aaebcbf7 (diff) | |
download | rails-8b104e2f0cb6e92604185f7a4934acad80142f2a.tar.gz rails-8b104e2f0cb6e92604185f7a4934acad80142f2a.tar.bz2 rails-8b104e2f0cb6e92604185f7a4934acad80142f2a.zip |
Use File.join to better integrate fixture_path in fixture_file_upload.
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/testing/test_process.rb | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/actionpack/lib/action_dispatch/testing/test_process.rb b/actionpack/lib/action_dispatch/testing/test_process.rb index 9ad5a1bc1d..e657283cec 100644 --- a/actionpack/lib/action_dispatch/testing/test_process.rb +++ b/actionpack/lib/action_dispatch/testing/test_process.rb @@ -26,17 +26,19 @@ module ActionDispatch @response.redirect_url end - # Shortcut for <tt>Rack::Test::UploadedFile.new(ActionController::TestCase.fixture_path + path, type)</tt>: + # Shortcut for <tt>Rack::Test::UploadedFile.new(File.join(ActionController::TestCase.fixture_path, path), type)</tt>: # - # post :change_avatar, avatar: fixture_file_upload('/files/spongebob.png', 'image/png') + # post :change_avatar, avatar: fixture_file_upload('files/spongebob.png', 'image/png') # # To upload binary files on Windows, pass <tt>:binary</tt> as the last parameter. # This will not affect other platforms: # - # post :change_avatar, avatar: fixture_file_upload('/files/spongebob.png', 'image/png', :binary) + # post :change_avatar, avatar: fixture_file_upload('files/spongebob.png', 'image/png', :binary) def fixture_file_upload(path, mime_type = nil, binary = false) - fixture_path = self.class.fixture_path if self.class.respond_to?(:fixture_path) - Rack::Test::UploadedFile.new("#{fixture_path}#{path}", mime_type, binary) + if self.class.respond_to?(:fixture_path) && self.class.fixture_path + path = File.join(self.class.fixture_path, path) + end + Rack::Test::UploadedFile.new(path, mime_type, binary) end end end |