Class: Inspec::Resources::Http::Worker::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/inspec/resources/http.rb

Direct Known Subclasses

Local, Remote

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(http_method, url, opts) ⇒ Base

Returns a new instance of Base.



79
80
81
82
83
84
# File 'lib/inspec/resources/http.rb', line 79

def initialize(http_method, url, opts)
  @http_method = http_method
  @url = url
  @opts = opts
  @response = nil
end

Instance Attribute Details

#http_methodObject (readonly)

Returns the value of attribute http_method.



77
78
79
# File 'lib/inspec/resources/http.rb', line 77

def http_method
  @http_method
end

#optsObject (readonly)

Returns the value of attribute opts.



77
78
79
# File 'lib/inspec/resources/http.rb', line 77

def opts
  @opts
end

#urlObject (readonly)

Returns the value of attribute url.



77
78
79
# File 'lib/inspec/resources/http.rb', line 77

def url
  @url
end