Do not show contact if given domain does not belong to the current user

This commit is contained in:
Artur Beljajev 2018-08-16 14:49:12 +03:00
parent 5a466206bf
commit c89cce6287
7 changed files with 39 additions and 7 deletions

View file

@ -15,6 +15,11 @@ class RegistrantAreaDomainListTest < ApplicationSystemTestCase
assert_link 'John', href: registrant_domain_contact_path(@domain, @domain.registrant)
assert_link 'Best Names', href: registrant_registrar_path(@domain.registrar)
assert_text l(Time.zone.parse('2010-07-05'))
assert_css '.domains .domain', count: 5
assert_css '.domains .domain', count: 4
end
def test_do_not_show_domains_of_other_registrant_users
visit registrant_domains_url
assert_no_text 'metro.test'
end
end