-
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.
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,9 @@ | |
describe "#matching_claims for ECP/LUP claims" do | ||
let!(:source_claim) { | ||
create(:claim, | ||
first_name: "Genghis", | ||
surname: "Khan", | ||
date_of_birth: Date.new(1162, 5, 31), | ||
national_insurance_number: "QQ891011C", | ||
email_address: "[email protected]", | ||
bank_account_number: "34682151", | ||
|
@@ -172,5 +175,14 @@ | |
|
||
expect(matching_claims).to be_empty | ||
end | ||
|
||
it "does not include a claim with a matching name" do | ||
end | ||
|
||
it "does not include a claim with a matching date of birth" do | ||
end | ||
|
||
it "includes a claim with a matching name and date of birth" do | ||
end | ||
end | ||
end |