mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
18 lines
300 B
Go
18 lines
300 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())
|
|
}
|