mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-15 01:17:13 -05:00
16 lines
256 B
Go
16 lines
256 B
Go
|
package gcp
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestTrivialAutoscalerFunctions(t *testing.T) {
|
||
|
assert := assert.New(t)
|
||
|
autoscaler := Autoscaler{}
|
||
|
|
||
|
assert.NotEmpty(autoscaler.Name())
|
||
|
assert.True(autoscaler.Supported())
|
||
|
}
|