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

56 lines
1.2 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe CountryState do
subject { create :country_state }
it do
is_expected.to \
have_one(:regional_office)
.dependent(:restrict_with_exception)
end
it { is_expected.not_to validate_presence_of :regional_office }
it { is_expected.to validate_presence_of :english_name }
it { is_expected.to validate_presence_of :native_name }
it { is_expected.to validate_uniqueness_of :english_name }
it { is_expected.to validate_uniqueness_of :native_name }
describe '#display_name' do
subject { create :country_state, native_name: Faker::Address.unique.state }
around do |example|
I18n.with_locale locale do
example.run
end
end
context 'when locale is "en"' do
let(:locale) { :en }
specify do
expect(subject.display_name).to eq subject.english_name
end
specify do
expect(subject.display_name).not_to eq subject.native_name
end
end
context 'when locale is "ru"' do
let(:locale) { :ru }
specify do
expect(subject.display_name).to eq subject.native_name
end
specify do
expect(subject.display_name).not_to eq subject.english_name
end
end
end
end