mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
11 lines
175 B
Ruby
11 lines
175 B
Ruby
require 'test_helper'
|
|
|
|
class ContactTest < ActiveSupport::TestCase
|
|
def setup
|
|
@contact = contacts(:john)
|
|
end
|
|
|
|
def test_validates
|
|
assert @contact.valid?
|
|
end
|
|
end
|