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

minimal.html.haml_spec.rb « layouts « views « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97cd699d32f613c0a50b949b9cf6b4c0befe7f92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'layouts/minimal', feature_category: :onboarding do
  context 'without broadcast messaging' do
    it 'does not render the broadcast layout' do
      render

      expect(rendered).not_to render_template('layouts/_broadcast')
    end
  end
end