BigW Consortium Gitlab

relative_url.rb 210 Bytes
Newer Older
1 2 3 4 5 6 7 8
# Fix route helpers in tests (e.g. root_path, ...)
module RelativeUrl
  extend ActiveSupport::Concern

  included do
    default_url_options[:script_name] = Rails.application.config.relative_url_root
  end
end