2017-05-29 16:03:02 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 05:12:25 +00:00
|
|
|
RSpec.describe FlashesHelper do
|
2017-05-29 16:03:02 +00:00
|
|
|
describe 'user_facing_flashes' do
|
2023-11-09 09:46:39 +00:00
|
|
|
before do
|
|
|
|
# rubocop:disable Rails/I18nLocaleTexts
|
2017-05-29 16:03:02 +00:00
|
|
|
flash[:alert] = 'an alert'
|
|
|
|
flash[:error] = 'an error'
|
|
|
|
flash[:notice] = 'a notice'
|
|
|
|
flash[:success] = 'a success'
|
|
|
|
flash[:not_user_facing] = 'a not user facing flash'
|
2023-11-09 09:46:39 +00:00
|
|
|
# rubocop:enable Rails/I18nLocaleTexts
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns user facing flashes' do
|
|
|
|
expect(helper.user_facing_flashes).to eq(
|
|
|
|
'alert' => 'an alert',
|
|
|
|
'error' => 'an error',
|
|
|
|
'notice' => 'a notice',
|
|
|
|
'success' => 'a success'
|
|
|
|
)
|
2017-05-29 16:03:02 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|