mirror of
https://github.com/internetee/registry.git
synced 2025-08-25 10:33:38 +02:00
Move file to another folder
This commit is contained in:
parent
b33ad0d4e8
commit
13562aeb06
1 changed files with 21 additions and 3 deletions
|
@ -1,34 +0,0 @@
|
|||
require 'test_helper'
|
||||
|
||||
class RegistrantApiDomainsTest < ApplicationSystemTestCase
|
||||
def setup
|
||||
super
|
||||
|
||||
@domain = domains(:hospital)
|
||||
@registrant = @domain.registrant
|
||||
end
|
||||
|
||||
def teardown
|
||||
super
|
||||
end
|
||||
|
||||
def test_get_domain_details_by_uuid
|
||||
get '/api/v1/registrant/domains/5edda1a5-3548-41ee-8b65-6d60daf85a37'
|
||||
assert_equal(200, response.status)
|
||||
|
||||
domain = JSON.parse(response.body, symbolize_names: true)
|
||||
assert_equal('hospital.test', domain[:name])
|
||||
end
|
||||
|
||||
def test_get_non_existent_domain_details_by_uuid
|
||||
get '/api/v1/registrant/domains/random-uuid'
|
||||
assert_equal(404, response.status)
|
||||
|
||||
response_json = JSON.parse(response.body, symbolize_names: true)
|
||||
assert_equal({errors: ['Domain not found']}, response_json)
|
||||
end
|
||||
|
||||
def test_get_non_registrar_domain_details_by_uuid
|
||||
# no op
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue