github.com/mwhudson/juju@v0.0.0-20160512215208-90ff01f3497f/environs/imagemetadata/export_test.go (about) 1 // Copyright 2013 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package imagemetadata 5 6 const CurrentStreamsVersion = currentStreamsVersion 7 8 // SetSigningPublicKey sets a new public key for testing and returns the original key. 9 func SetSigningPublicKey(key string) string { 10 oldKey := SimplestreamsImagesPublicKey 11 SimplestreamsImagesPublicKey = key 12 return oldKey 13 }