Browse Source

Check that the methods get called

pull/312/head
Kat 3 years ago
parent
commit
1b57aacb71
  1. 8
      spec/models/case_log_spec.rb

8
spec/models/case_log_spec.rb

@ -161,6 +161,14 @@ RSpec.describe CaseLog do
it "validates accessibility requirements" do
expect(validator).to receive(:validate_accessibility_requirements)
end
it "validates tenancy type" do
expect(validator).to receive(:validate_tenancy_type)
end
it "validates referral" do
expect(validator).to receive(:validate_referral)
end
end
describe "status" do

Loading…
Cancel
Save