mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-04 07:15:05 -04:00
Move cli/azure to cli/internal/azure
This commit is contained in:
parent
180d7872dd
commit
064151a956
27 changed files with 11 additions and 11 deletions
14
cli/internal/azure/autoscaling_node_group_test.go
Normal file
14
cli/internal/azure/autoscaling_node_group_test.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue