github.com/mhilton/juju-juju@v0.0.0-20150901100907-a94dd2c73455/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 ( 7 KVMPath = &kvmPath 8 9 // Used to export the parameters used to call Start on the KVM Container 10 TestStartParams = &startParams 11 ) 12 13 func NewEmptyKvmContainer() *kvmContainer { 14 return &kvmContainer{} 15 }