mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
12 lines
157 B
Go
12 lines
157 B
Go
package aws
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestProvider(t *testing.T) {
|
|
if err := Provider().InternalValidate(); err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
}
|