summaryrefslogtreecommitdiff
path: root/spec/support/helpers/snippet_helpers.rb
blob: de64ad7d3e24630f52dd8494fcc6a667339463ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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)
    }
  end
end