-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add rejection reasons for IRP emails
Adds the rejection reasons given in the ticket. I've also updated the notify email rejection template to work with these reasons.
- Loading branch information
Showing
3 changed files
with
17 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
require "rails_helper" | ||
|
||
RSpec.feature "Admin view claim" do | ||
Policies.all.each do |policy| | ||
# FIXME RL temp stub out this test until we've added rejection reasons for | ||
# IRP | ||
unless policy == Policies::InternationalRelocationPayments | ||
it_behaves_like "Admin View Claim Feature", policy | ||
end | ||
end | ||
Policies.all.each { |policy| it_behaves_like "Admin View Claim Feature", policy } | ||
end |