Sha256: 4de9c0ebf13f12de39d1408395d5d8801ba7c33fdad1e7cee0c24421c0762941
Contents?: true
Size: 1.15 KB
Versions: 2
Compression:
Stored size: 1.15 KB
Contents
require "rails" # Defualt the rails logger to nothing, each test shoould be # responsible for setting up the logger logger = ::Logger.new(STDOUT) # change to STDOUT to see rails logs Rails.logger = logger class RailsApp < Rails::Application if ::Rails.version =~ /^3\./ config.secret_token = '1e05af2b349457936a41427e63450937' else config.secret_key_base = '1e05af2b349457936a41427e63450937' end config.active_support.deprecation = :stderr config.eager_load = false end RailsApp.initialize! module Support module Rails def dispatch_rails_request(path, additional_env_options = {}) application = ::Rails.application env = application.respond_to?(:env_config) ? application.env_config.clone : application.env_defaults.clone env["rack.request.cookie_hash"] = {}.with_indifferent_access env["REMOTE_ADDR"] = "123.456.789.10" env["X-Request-Id"] = "unique-request-id-1234" env["action_dispatch.request_id"] = env["X-Request-Id"] env = env.merge(additional_env_options) ::Rack::MockRequest.new(application).get(path, env) end end end RSpec.configure do |config| config.include Support::Rails end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
timber-1.1.14 | spec/support/rails.rb |
timber-1.1.13 | spec/support/rails.rb |