debian-mirror-gitlab/spec/views/layouts/minimal.html.haml_spec.rb
2023-07-09 08:55:56 +05:30

13 lines
313 B
Ruby

# 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