almost empty

This commit is contained in:
2026-01-30 22:44:32 +01:00
commit b5320bf29a
22 changed files with 1576 additions and 0 deletions

22
conformance_test.go Normal file
View File

@@ -0,0 +1,22 @@
// © 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)
}