CloudWatch: fix custom namespace for listing dimension keys, refactor to non-pointer types, add test assertions, rename packages (#59106)
Co-authored-by: Erik Sundell <erik.sundell87@gmail.com>
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package resources
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
)
|
||||
|
||||
func TestResourceRequest(t *testing.T) {
|
||||
t.Run("Should return an error if region is not provided", func(t *testing.T) {
|
||||
request, err := GetDimensionValuesRequest(map[string][]string{})
|
||||
require.Empty(t, request)
|
||||
assert.Equal(t, "region is required", err.Error())
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user