blob: fdb55a6280287712afe69ee090d4c8b8bf0e41d5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# 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_example_snapshots_dir = File.expand_path('../../fixtures/glfm/example_snapshots', __dir__)
include_context 'API::Markdown Snapshot shared context', glfm_example_snapshots_dir
end
|