Move file to another folder

This commit is contained in:
Maciej Szlosarczyk 2018-07-30 13:56:54 +03:00
parent b33ad0d4e8
commit 13562aeb06
No known key found for this signature in database
GPG key ID: 41D62D42D3B0D765

View file

@ -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