2023-02-22 09:55:31 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-30 18:10:46 +09:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 14:12:25 +09:00
|
|
|
RSpec.describe DomainAllow do
|
2024-01-19 01:11:04 +09:00
|
|
|
describe 'Validations' do
|
2024-09-06 00:36:05 +09:00
|
|
|
it { is_expected.to validate_presence_of(:domain) }
|
2023-03-05 01:16:45 +09:00
|
|
|
|
2024-10-25 17:42:14 +09:00
|
|
|
context 'when a normalized domain exists' do
|
|
|
|
before { Fabricate(:domain_allow, domain: 'にゃん') }
|
|
|
|
|
|
|
|
it { is_expected.to_not allow_value('xn--r9j5b5b').for(:domain) }
|
2023-03-05 01:16:45 +09:00
|
|
|
end
|
|
|
|
end
|
2019-07-30 18:10:46 +09:00
|
|
|
end
|