Files
gitlab-foss/spec/support/helpers/snippet_helpers.rb
2023-11-21 03:11:27 +00:00

15 lines
308 B
Ruby

# frozen_string_literal: true
module SnippetHelpers
def sign_in_as(user)
sign_in(public_send(user)) if user
end
def snippet_blob_file(blob)
{
"path" => blob.path,
"raw_url" => gitlab_raw_snippet_blob_url(blob.container, blob.path, host: Gitlab.config.gitlab.host)
}
end
end