23 lines
458 B
Go
23 lines
458 B
Go
// © 2025 Platform Engineering Labs Inc.
|
|
//
|
|
// SPDX-License-Identifier: FSL-1.1-ALv2
|
|
|
|
//go:build conformance
|
|
|
|
// Conformance tests for the plugin. Run with: make conformance-test
|
|
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
conformance "github.com/platform-engineering-labs/formae/pkg/plugin-conformance-tests"
|
|
)
|
|
|
|
func TestPluginConformance(t *testing.T) {
|
|
conformance.RunCRUDTests(t)
|
|
}
|
|
|
|
func TestPluginDiscovery(t *testing.T) {
|
|
conformance.RunDiscoveryTests(t)
|
|
}
|