mirror of
https://github.com/internetee/registry.git
synced 2025-08-01 23:42:04 +02:00
19 lines
391 B
Ruby
19 lines
391 B
Ruby
require 'test_helper'
|
|
|
|
class ShowRegistrarTest < ActionDispatch::IntegrationTest
|
|
include ActionView::Helpers::NumberHelper
|
|
|
|
def setup
|
|
login_as users(:admin)
|
|
@registrar = registrars(:bestnames)
|
|
visit admin_registrar_path(@registrar)
|
|
end
|
|
|
|
def test_accounting_customer_code
|
|
assert_text 'bestnames'
|
|
end
|
|
|
|
def test_language
|
|
assert_text 'Language English'
|
|
end
|
|
end
|