mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-18 15:34:38 +01:00
18 lines
250 B
Go
18 lines
250 B
Go
package provider
|
|
|
|
import (
|
|
"testing"
|
|
|
|
_ "embed"
|
|
|
|
expect "github.com/yusing/goutils/testing"
|
|
)
|
|
|
|
//go:embed all_fields.yaml
|
|
var testAllFieldsYAML []byte
|
|
|
|
func TestFile(t *testing.T) {
|
|
_, err := validate(testAllFieldsYAML)
|
|
expect.NoError(t, err)
|
|
}
|