mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-19 03:41:44 -05:00
15 lines
414 B
Go
15 lines
414 B
Go
|
package gcp
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestAutoscalingNodeGroup(t *testing.T) {
|
||
|
assert := assert.New(t)
|
||
|
nodeGroups := AutoscalingNodeGroup("some-project", "some-zone", "some-group", 0, 100)
|
||
|
expectedNodeGroups := "0:100:https://www.googleapis.com/compute/v1/projects/some-project/zones/some-zone/instanceGroups/some-group"
|
||
|
assert.Equal(expectedNodeGroups, nodeGroups)
|
||
|
}
|