mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-02-10 03:58:30 -05:00
15 lines
294 B
Go
15 lines
294 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)
|
||
|
expectedNodeGroups := "0:100:scale-set"
|
||
|
assert.Equal(expectedNodeGroups, nodeGroups)
|
||
|
}
|