class Kitchen::Transport::Dockercli

Driver for Docker on Windows.

@author Stuart Preston <stuart@chef.io>

Public Instance Methods

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