method

fixture_file_upload

fixture_file_upload(path, mime_type = nil)
public

Shortcut for ActionController::TestUploadedFile.new(Test::Unit::TestCase.fixture_path + path, type). Example:

  post :change_avatar, :avatar => fixture_file_upload('/files/spongebob.png', 'image/png')

1Note

Moved in Rails 3

insane-dreamer ยท Jul 23, 20103 thanks

In Rails 3, this has moved to ActionDispatch::TestProcess

(Which means, if you want to use it in a test, you need to add the following to test_helper.rb:)

include ActionDispatch::TestProcess