github.com/makyo/juju@v0.0.0-20160425123129-2608902037e9/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 }