mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 12:42:34 +02:00
17 lines
234 B
Go
17 lines
234 B
Go
package provider
|
|
|
|
import (
|
|
"testing"
|
|
|
|
_ "embed"
|
|
|
|
. "github.com/yusing/go-proxy/internal/utils/testing"
|
|
)
|
|
|
|
//go:embed all_fields.yaml
|
|
var yaml []byte
|
|
|
|
func TestFile(t *testing.T) {
|
|
_, err := validate(yaml)
|
|
ExpectNoError(t, err)
|
|
}
|