mirror of https://github.com/tootsuite/mastodon
17 lines
556 B
Ruby
17 lines
556 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe DomainAllow do
|
|
describe 'Validations' do
|
|
it { is_expected.to validate_presence_of(:domain) }
|
|
|
|
it 'is invalid if the same normalized domain already exists' do
|
|
_domain_allow = Fabricate(:domain_allow, domain: 'にゃん')
|
|
domain_allow_with_normalized_value = Fabricate.build(:domain_allow, domain: 'xn--r9j5b5b')
|
|
domain_allow_with_normalized_value.valid?
|
|
expect(domain_allow_with_normalized_value).to model_have_error_on_field(:domain)
|
|
end
|
|
end
|
|
end
|