mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-25 23:49:37 -05:00
26e9c67a00
Decouples cloud provider metadata packages from kubernetes related code Signed-off-by: Malte Poll <mp@edgeless.systems>
18 lines
302 B
Go
18 lines
302 B
Go
package gcp
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestTrivialCNMFunctions(t *testing.T) {
|
|
assert := assert.New(t)
|
|
cloud := CloudNodeManager{}
|
|
|
|
assert.Empty(cloud.Image(""))
|
|
assert.Empty(cloud.Path())
|
|
assert.Empty(cloud.ExtraArgs())
|
|
assert.False(cloud.Supported())
|
|
}
|