diff --git a/app/models/policies/further_education_payments.rb b/app/models/policies/further_education_payments.rb index 3568b11e83..538a924347 100644 --- a/app/models/policies/further_education_payments.rb +++ b/app/models/policies/further_education_payments.rb @@ -69,9 +69,8 @@ module FurtherEducationPayments # NOOP as PERSONAL_DATA_ATTRIBUTES_TO_RETAIN_FOR_EXTENDED_PERIOD is empty EXTENDED_PERIOD_END_DATE = ->(start_of_academic_year) {} - # TODO: This is needed once the reply-to email address has been added to Gov Notify def notify_reply_to_id - nil + "89939786-7078-4267-b197-ee505dfad8ae" end def verification_due_date_for_claim(claim) diff --git a/spec/models/further_education_payments_spec.rb b/spec/models/further_education_payments_spec.rb new file mode 100644 index 0000000000..b5e3712722 --- /dev/null +++ b/spec/models/further_education_payments_spec.rb @@ -0,0 +1,19 @@ +require "rails_helper" + +RSpec.describe Policies::FurtherEducationPayments, type: :model do + it { is_expected.to include(BasePolicy) } + + it do + expect(subject::VERIFIERS).to eq([ + AutomatedChecks::ClaimVerifiers::Identity, + AutomatedChecks::ClaimVerifiers::ProviderVerification, + AutomatedChecks::ClaimVerifiers::Employment + ]) + end + + specify { + expect(subject).to have_attributes( + notify_reply_to_id: "89939786-7078-4267-b197-ee505dfad8ae" + ) + } +end