github.com/axw/juju@v0.0.0-20161005053422-4bd6544d08d4/container/kvm/export_test.go (about)

     1  // Copyright 2014 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package kvm
     5  
     6  // This file exports internal package implementations so that tests
     7  // can utilize them to mock behavior.
     8  
     9  var (
    10  	KVMPath = &kvmPath
    11  
    12  	// Used to export the parameters used to call Start on the KVM Container
    13  	TestStartParams = &startParams
    14  )
    15  
    16  func NewEmptyKvmContainer() *kvmContainer {
    17  	return &kvmContainer{}
    18  }