# File lib/action_dispatch/testing/test_process.rb, line 6 6: def assigns(key = nil) 7: assigns = {}.with_indifferent_access 8: @controller.instance_variable_names.each do |ivar| 9: next if ActionController::Base.protected_instance_variables.include?(ivar) 10: assigns[ivar[1..1]] = @controller.instance_variable_get(ivar) 11: end 12: 13: key.nil? ? assigns : assigns[key] 14: end
Shortcut for ARack::Test::UploadedFile.new(ActionController::TestCase.fixture_path + path, type):
post :change_avatar, :avatar => fixture_file_upload('/files/spongebob.png', 'image/png')
To upload binary files on Windows, pass :binary as the last parameter. This will not affect other platforms:
post :change_avatar, :avatar => fixture_file_upload('/files/spongebob.png', 'image/png', :binary)
# File lib/action_dispatch/testing/test_process.rb, line 40 40: def fixture_file_upload(path, mime_type = nil, binary = false) 41: fixture_path = ActionController::TestCase.send(:fixture_path) if ActionController::TestCase.respond_to?(:fixture_path) 42: Rack::Test::UploadedFile.new("#{fixture_path}#{path}", mime_type, binary) 43: end
# File lib/action_dispatch/testing/test_process.rb, line 20 20: def flash 21: @request.flash 22: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.