debian-mirror-gitlab/spec/support/helpers/test_request_helpers.rb
2019-02-15 15:39:39 +05:30

8 lines
209 B
Ruby

# frozen_string_literal: true
module TestRequestHelpers
def test_request(remote_ip: '127.0.0.1')
ActionController::TestRequest.new({ remote_ip: remote_ip }, ActionController::TestSession.new)
end
end