summaryrefslogtreecommitdiff
path: root/spec/requests/api/markdown_snapshot_spec.rb
blob: 37607a4e86670ea219d677ad2fb5fc04e4917b08 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

# See https://docs.gitlab.com/ee/development/gitlab_flavored_markdown/specification_guide/#markdown-snapshot-testing
# for documentation on this spec.
RSpec.describe API::Markdown, 'Snapshot' do
  glfm_specification_dir = File.expand_path('../../../glfm_specification', __dir__)
  glfm_example_snapshots_dir = File.expand_path('../../fixtures/glfm/example_snapshots', __dir__)
  include_context 'with API::Markdown Snapshot shared context', glfm_specification_dir, glfm_example_snapshots_dir
end