class ServerBroadcastReport
Report used by module
Attributes
server_info[RW]
server_key[RW]
Public Class Methods
new(server_info, server_key)
click to toggle source
# File lib/api-tester/modules/server_information.rb, line 32 def initialize(server_info, server_key) self.server_info = server_info self.server_key = server_key end
Public Instance Methods
print()
click to toggle source
# File lib/api-tester/modules/server_information.rb, line 37 def print puts 'Found server information being broadcast in headers:' puts " #{server_info}" puts " as #{server_key}" end