mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
51068abc27
consistent naming for test values using 'want' instead of 'expect/ed'
15 lines
286 B
Go
15 lines
286 B
Go
package azure
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAutoscalingNodeGroup(t *testing.T) {
|
|
assert := assert.New(t)
|
|
nodeGroups := AutoscalingNodeGroup("scale-set", 0, 100)
|
|
wantNodeGroups := "0:100:scale-set"
|
|
assert.Equal(wantNodeGroups, nodeGroups)
|
|
}
|