internetee-registry/spec/support/requests/epp_helpers.rb
2017-02-19 13:35:27 +02: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