class Kitchen::Transport::Dummy

Dummy transport for Kitchen. This transport does nothing but report what would happen if this transport did anything of consequence. As a result it may be a useful transport to use when debugging or developing new features or plugins.

Public Instance Methods

connection(state, &block) click to toggle source
# File lib/kitchen/transport/dummy.rb, line 34
def connection(state, &block)
  options = config.to_hash.merge(state)
  Kitchen::Transport::Dummy::Connection.new(options, &block)
end