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

Inherits:
Object
  • Object
show all
Defined in:
lib/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.



73
74
75
76
77
78
# File 'lib/resources/http.rb', line 73

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.



71
72
73
# File 'lib/resources/http.rb', line 71

def http_method
  @http_method
end

#optsObject (readonly)

Returns the value of attribute opts.



71
72
73
# File 'lib/resources/http.rb', line 71

def opts
  @opts
end

#urlObject (readonly)

Returns the value of attribute url.



71
72
73
# File 'lib/resources/http.rb', line 71

def url
  @url
end