internetee-registry/test/system/registrant_area/layout_test.rb
2019-03-15 17:33:07 +02:00

15 lines
365 B
Ruby

require 'test_helper'
class RegistrantLayoutTest < ApplicationSystemTestCase
def setup
super
sign_in(users(:registrant))
end
def test_has_link_to_rest_whois_and_internet_ee
visit registrant_domains_url
assert(has_link?('Internet.ee', href: 'https://internet.ee'))
assert(has_link?('WHOIS', href: 'https://whois.internet.ee'))
end
end