Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
rjlynch committed Sep 6, 2024
1 parent 013ca26 commit 41b309e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions spec/models/claim/matching_attribute_finder_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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

0 comments on commit 41b309e

Please sign in to comment.