github.com/Pankov404/juju@v0.0.0-20150703034450-be266991dceb/container/kvm/export_test.go (about)

     1  package kvm
     2  
     3  // This file exports internal package implementations so that tests
     4  // can utilize them to mock behavior.
     5  
     6  var KVMPath = &kvmPath
     7  
     8  // Used to export the parameters used to call Start on the KVM Container
     9  var TestStartParams = &startParams
    10  
    11  func NewEmptyKvmContainer() *kvmContainer {
    12  	return &kvmContainer{}
    13  }