class Kitchen::Driver::Static::Queueing::Json

Public Class Methods

new(options = {}) click to toggle source
# File lib/kitchen/driver/queueing/json.rb, line 7
def initialize(options = {})
  super

  default_handler_options({
    mode:    :wait, # :wait, :repeat, ?
    method:  :get,  # :get, :post
    data:    '',
    query:   {},
    map:     {}
  })

  kitchen_handler_options options
end

Public Instance Methods

release() click to toggle source
# File lib/kitchen/driver/queueing/json.rb, line 27
def release
  super

  # TODO
end
request() click to toggle source
# File lib/kitchen/driver/queueing/json.rb, line 21
def request
  super

  # TODO
end