mirror of
https://github.com/internetee/registry.git
synced 2025-06-07 13:15:40 +02:00
11 lines
223 B
Ruby
11 lines
223 B
Ruby
require 'test_helper'
|
|
|
|
class DomainReleasableTest < ActiveSupport::TestCase
|
|
setup do
|
|
@domain = domains(:shop)
|
|
end
|
|
|
|
def test_releasing_a_domain_discards_it_by_default
|
|
refute Domain.release_to_auction
|
|
end
|
|
end
|