mirror of
https://github.com/internetee/registry.git
synced 2025-06-08 13:44:47 +02:00
11 lines
211 B
Ruby
11 lines
211 B
Ruby
require 'test_helper'
|
|
|
|
class ReservedDomainTest < ActiveSupport::TestCase
|
|
setup do
|
|
@reserved_domain = reserved_domains(:one)
|
|
end
|
|
|
|
def test_fixture_is_valid
|
|
assert @reserved_domain.valid?
|
|
end
|
|
end
|