summaryrefslogtreecommitdiff
path: root/spec/support/helpers/doc_url_helper.rb
blob: f98c16a3cc4475176cf4a9df08528f190aae4b96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module DocUrlHelper
  def version
    "13.4.0-ee"
  end

  def doc_url(documentation_base_url)
    "#{documentation_base_url}/13.4/ee/#{path}.html"
  end

  def doc_url_without_version(documentation_base_url)
    "#{documentation_base_url}/ee/#{path}.html"
  end

  def stub_doc_file_read(content:, file_name: 'index.md')
    expect_file_read(File.join(Rails.root, 'doc', file_name), content: content)
  end
end

DocUrlHelper.prepend_mod