Browse Source

review changes

pull/391/head
Dushan Despotovic 3 years ago
parent
commit
9e930bfdfd
  1. 2
      config/locales/en.yml
  2. 4
      spec/models/case_log_spec.rb

2
config/locales/en.yml

@ -50,7 +50,7 @@ en:
setup:
intermediate_rent_product_name:
blank: "Enter an intermediate rent product name"
blank: "Enter name of other intermediate rent product"
property:
mrcdate:

4
spec/models/case_log_spec.rb

@ -56,6 +56,10 @@ RSpec.describe CaseLog do
expect(validator).to receive(:validate_startdate)
end
it "validates intermediate rent product name" do
expect(validator).to receive(:validate_intermediate_rent_product_name)
end
it "validates other household member details" do
expect(validator).to receive(:validate_household_number_of_other_members)
end

Loading…
Cancel
Save