2022-07-23 23:45:48 +05:30
|
|
|
# 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
|
2022-08-13 15:12:31 +05:30
|
|
|
# noinspection RubyMismatchedArgumentType (ignore RBS type warning: __dir__ can be nil, but 2nd argument can't be nil)
|
2022-07-23 23:45:48 +05:30
|
|
|
glfm_specification_dir = File.expand_path('../../../glfm_specification', __dir__)
|
2022-08-13 15:12:31 +05:30
|
|
|
include_context 'with API::Markdown Snapshot shared context', glfm_specification_dir
|
2022-07-23 23:45:48 +05:30
|
|
|
end
|