class Kitchen::Microwave::Driver
The driver config is just a hash with a couple static values.
@author Jonathan Hartman <jonathan.hartman@socrata.com>
Public Class Methods
new()
click to toggle source
Configure the driver section to use dokken. We do enough with networking that requires privileged mode to default it to true.
@return [Kitchen::Microwave::Driver] the new driver object
# File lib/kitchen/microwave/driver.rb, line 33 def initialize self['name'] = 'dokken' self['privileged'] = true end