mirror of
https://github.com/actions/actions-runner-controller.git
synced 2026-01-14 07:27:40 +08:00
21 lines
346 B
Go
21 lines
346 B
Go
package tests
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/gruntwork-io/terratest/modules/helm"
|
|
"github.com/gruntwork-io/terratest/modules/logger"
|
|
)
|
|
|
|
func TestAutoscalingRunnerSetLabels(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
t.Run("should set default labels", func(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
options := &helm.Options{
|
|
Logger: logger.Discard,
|
|
}
|
|
})
|
|
}
|