debian-mirror-gitlab/spec/views/help/show.html.haml_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
406 B
Ruby
Raw Normal View History

2020-05-24 23:13:21 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe 'help/show' do
2020-05-24 23:13:21 +05:30
describe 'Markdown rendering' do
before do
2021-09-30 23:02:18 +05:30
assign(:path, 'ssh/index')
2020-05-24 23:13:21 +05:30
assign(:markdown, 'Welcome to [GitLab](https://about.gitlab.com/) Documentation.')
end
it 'renders Markdown' do
render
expect(rendered).to have_link('GitLab', href: 'https://about.gitlab.com/')
end
end
end