internetee-registry/spec/support/requests/epp_helpers.rb
2017-10-05 16:08:47 +03:00

11 lines
191 B
Ruby

module Requests
module EPPHelpers
def have_code_of(*args)
Matchers::EPP::Code.new(*args)
end
def valid_legal_document
Base64.encode64('a' * 5000)
end
end
end