package providers_test import ( "testing" ) // TestRegistryLoad verifies that provider YAML files are loaded from embed.FS. // Stub: will be implemented when registry.go exists (Plan 02). func TestRegistryLoad(t *testing.T) { t.Skip("stub — implement after registry.go exists") } // TestProviderSchemaValidation verifies format_version and last_verified are required. // Stub: will be implemented when schema.go validation exists (Plan 02). func TestProviderSchemaValidation(t *testing.T) { t.Skip("stub — implement after schema.go validation exists") } // TestAhoCorasickBuild verifies Aho-Corasick automaton builds from provider keywords. // Stub: will be implemented when registry builds automaton (Plan 02). func TestAhoCorasickBuild(t *testing.T) { t.Skip("stub — implement after registry AC build exists") }