mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
13 lines
278 B
Ruby
13 lines
278 B
Ruby
require 'test_helper'
|
|
|
|
class AdminDomainsTestTest < ActionDispatch::IntegrationTest
|
|
def setup
|
|
login_as users(:admin)
|
|
end
|
|
|
|
def test_shows_details
|
|
domain = domains(:shop)
|
|
visit admin_domain_path(domain)
|
|
assert_field nil, with: domain.transfer_code
|
|
end
|
|
end
|