mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
11 lines
191 B
Ruby
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
|