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

40 lines
999 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-07-20 06:07:02 -04:00
describe '#federal_subject' do
it { is_expected.to belong_to :federal_subject }
2018-12-06 17:49:50 -05:00
2019-07-20 06:07:02 -04:00
it do
is_expected.to \
validate_presence_of(:federal_subject)
.with_message(:required)
end
2019-07-20 06:07:02 -04:00
it { is_expected.to validate_uniqueness_of :federal_subject }
end
2019-08-18 01:10:11 -04:00
describe '#name' do
def allow_value(*)
super.for :name
end
it { is_expected.to validate_presence_of :name }
it { is_expected.to validate_uniqueness_of :name }
it do
is_expected.to validate_length_of(:name).is_at_least(1).is_at_most(255)
end
it { is_expected.not_to allow_value ' Foo' }
it { is_expected.not_to allow_value 'Foo ' }
it { is_expected.not_to allow_value "\tFoo" }
it { is_expected.not_to allow_value "Foo\t" }
it { is_expected.not_to allow_value "\nFoo" }
it { is_expected.not_to allow_value "Foo\n" }
end
2018-12-06 17:49:50 -05:00
end