mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-04 21:14:14 -04:00
Rename coordinator to bootstrapper and rename roles
This commit is contained in:
parent
3280ed200c
commit
916e5d6b55
191 changed files with 1763 additions and 2030 deletions
17
bootstrapper/cloudprovider/gcp/cloudnodemanager_test.go
Normal file
17
bootstrapper/cloudprovider/gcp/cloudnodemanager_test.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
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())
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue