From 43dbb47f2b711f21904ea75786380a25ca890a67 Mon Sep 17 00:00:00 2001 From: Shinya Maeda Date: Mon, 8 Jul 2019 15:01:10 +0700 Subject: Fix WorkhorseHelpers module is missing This interferes spec execution on local environment. --- spec/support/helpers/git_http_helpers.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/spec/support/helpers/git_http_helpers.rb b/spec/support/helpers/git_http_helpers.rb index cd49bb148f2..c83860d7b51 100644 --- a/spec/support/helpers/git_http_helpers.rb +++ b/spec/support/helpers/git_http_helpers.rb @@ -1,4 +1,8 @@ +require_relative 'workhorse_helpers' + module GitHttpHelpers + include WorkhorseHelpers + def clone_get(project, options = {}) get "/#{project}/info/refs", params: { service: 'git-upload-pack' }, headers: auth_env(*options.values_at(:user, :password, :spnego_request_token)) end -- cgit v1.2.1