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/relationship_spec.rb

25 lines
552 B
Ruby
Raw Normal View History

2019-04-27 10:24:04 -04:00
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Relationship do
subject { create :supporter_relationship }
it { is_expected.to belong_to(:person).required }
2019-04-28 08:48:51 -04:00
it { is_expected.to belong_to(:regional_office).required }
2019-07-20 02:02:32 -04:00
describe '#active_since' do
it { is_expected.to validate_presence_of :active_since }
2019-04-28 09:24:01 -04:00
it do
is_expected.to \
2019-07-20 02:02:32 -04:00
validate_uniqueness_of(:active_since)
.scoped_to(:person_id)
2019-04-28 09:24:01 -04:00
end
end
2019-06-04 22:33:45 -04:00
describe '#status' do
it { is_expected.to validate_presence_of :status }
end
2019-04-27 10:24:04 -04:00
end