2023-02-21 19:55:31 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-30 05:10:46 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 01:12:25 -04:00
|
|
|
RSpec.describe DomainAllow do
|
2024-01-18 11:11:04 -05:00
|
|
|
describe 'Validations' do
|
2024-09-05 11:36:05 -04:00
|
|
|
it { is_expected.to validate_presence_of(:domain) }
|
2023-03-04 11:16:45 -05:00
|
|
|
|
2024-10-25 04:42:14 -04: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-04 11:16:45 -05:00
|
|
|
end
|
|
|
|
end
|
2019-07-30 05:10:46 -04:00
|
|
|
end
|