10 lines
213 B
Go
10 lines
213 B
Go
package resource
|
|
|
|
import "testing"
|
|
|
|
func TestProfileCardIsValidResourceType(t *testing.T) {
|
|
if !ValidResourceType(TypeProfileCard) {
|
|
t.Fatalf("profile_card must be accepted as a configured resource type")
|
|
}
|
|
}
|