Handle EPP contact:transfer

This commit is contained in:
Artur Beljajev 2019-10-14 13:35:28 +03:00
parent e3bcc0badb
commit 397136ef13
5 changed files with 34 additions and 0 deletions

View file

@ -38,6 +38,7 @@ class EppResponseResultCodeTest < ActiveSupport::TestCase
parameter_value_range_error: 2004,
parameter_value_syntax_error: 2005,
billing_failure: 2104,
unimplemented: 2101,
object_is_not_eligible_for_renewal: 2105,
object_is_not_eligible_for_transfer: 2106,
authorization_error: 2201,
@ -66,6 +67,7 @@ class EppResponseResultCodeTest < ActiveSupport::TestCase
2003 => 'Required parameter missing',
2004 => 'Parameter value range error',
2005 => 'Parameter value syntax error',
2101 => 'Unimplemented command',
2104 => 'Billing failure',
2105 => 'Object is not eligible for renewal',
2106 => 'Object is not eligible for transfer',