You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
431 B
12 lines
431 B
3 years ago
|
require "rails_helper"
|
||
|
|
||
|
RSpec.describe ErrorSummaryFullMessagesPresenter do
|
||
|
let(:error_messages) { { reset_password_token: %w[expired] } }
|
||
|
let(:formatted_error_messages) { [[:reset_password_token, "Reset password token expired"]] }
|
||
|
subject { described_class.new(error_messages) }
|
||
|
|
||
|
it "formats messages to include the attribute name" do
|
||
|
expect(subject.formatted_error_messages).to eq(formatted_error_messages)
|
||
|
end
|
||
|
end
|