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.



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

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

Instance Attribute Details

#http_methodObject (readonly)

Returns the value of attribute http_method.



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

def http_method
  @http_method
end

#optsObject (readonly)

Returns the value of attribute opts.



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

def opts
  @opts
end

#urlObject (readonly)

Returns the value of attribute url.



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

def url
  @url
end