1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/spec/models/regional_office_spec.rb

26 lines
550 B
Ruby
Raw Normal View History

2018-12-06 17:49:50 -05:00
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe RegionalOffice do
subject { create :regional_office }
2019-06-23 11:59:44 -04:00
it { is_expected.to belong_to :federal_subject }
2018-12-06 17:49:50 -05:00
2018-12-14 23:09:43 -05:00
it { is_expected.to have_many(:people).dependent(:restrict_with_exception) }
it do
is_expected.to \
have_many(:relationships)
.dependent(:restrict_with_exception)
end
2018-12-06 17:49:50 -05:00
it do
is_expected.to \
2019-06-23 11:59:44 -04:00
validate_presence_of(:federal_subject)
2018-12-06 17:49:50 -05:00
.with_message(:required)
end
2019-06-23 11:59:44 -04:00
it { is_expected.to validate_uniqueness_of :federal_subject }
2018-12-06 17:49:50 -05:00
end