21 lines
513 B
Ruby
21 lines
513 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe RegionalOffice do
|
|
subject { create :regional_office }
|
|
|
|
it { is_expected.to belong_to :country_state }
|
|
|
|
it { is_expected.to have_many(:membership_apps).through(:country_state) }
|
|
|
|
it { is_expected.to have_many(:people).dependent(:restrict_with_exception) }
|
|
|
|
it do
|
|
is_expected.to \
|
|
validate_presence_of(:country_state)
|
|
.with_message(:required)
|
|
end
|
|
|
|
it { is_expected.to validate_uniqueness_of :country_state_id }
|
|
end
|