Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sandbox_controller_spec.rb « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77913065380cd4207a3e03de802a3c8b7604490b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe SandboxController, feature_category: :not_owned do
  describe 'GET #mermaid' do
    it 'renders page without template' do
      get sandbox_mermaid_path

      expect(response).to have_gitlab_http_status(:ok)
      expect(response).to render_template(layout: nil)
    end
  end
end