mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 09:57:23 +02:00
11 lines
171 B
Ruby
11 lines
171 B
Ruby
require 'test_helper'
|
|
|
|
class DomainTest < ActiveSupport::TestCase
|
|
def setup
|
|
@domain = domains(:shop)
|
|
end
|
|
|
|
def test_validates
|
|
assert @domain.valid?
|
|
end
|
|
end
|