Merge branch 'master' into registry-791

This commit is contained in:
Artur Beljajev 2018-06-20 12:34:26 +03:00
commit f8290f90c5
3 changed files with 90 additions and 92 deletions

View file

@ -9,9 +9,16 @@ class RegistrantLayoutTest < ActionDispatch::IntegrationTest
travel_to Time.zone.parse('2010-07-05')
end
def test_has_link_to_rest_whois
def teardown
super
travel_back
end
def test_has_link_to_rest_whois_and_internet_ee
visit registrant_domains_url
assert(has_link?('Internet.ee', href: 'https://internet.ee'))
refute(has_link?('WHOIS', href: 'registrant/whois'))
assert(has_link?('WHOIS', href: 'https://whois.internet.ee'))
end
end