Show label in UI if a domain is discarded

#792
This commit is contained in:
Artur Beljajev 2018-04-03 15:12:43 +03:00
parent 1dcf7bcd62
commit f269796382
4 changed files with 31 additions and 2 deletions

View file

@ -0,0 +1,16 @@
require 'test_helper'
class AdminAreaDomainDetailsTest < ActionDispatch::IntegrationTest
def setup
login_as users(:admin)
@domain = domains(:shop)
end
def test_discarded_domain_has_corresponding_label
visit admin_domain_url(@domain)
assert_no_css 'span.label.label-warning', text: 'deleteCandidate'
@domain.discard
visit admin_domain_url(@domain)
assert_css 'span.label.label-warning', text: 'deleteCandidate'
end
end