add: some tests

This commit is contained in:
2026-03-24 23:16:22 -07:00
parent e7e23c1e8c
commit 98b14220e7
6 changed files with 159 additions and 3 deletions
@@ -0,0 +1,14 @@
package webstory_service
import (
"testing"
v1 "git.tipsy.codes/charles/webstory/pkg/api/webstory/v1"
)
// Test_WebstoryServiceServer_ImplementsInterface ensures that WebstoryServiceServer
// implements the v1.WebstoryServiceServer interface. This is a compile-time check
// that will fail if the interface changes or if methods are missing.
func Test_WebstoryServiceServer_ImplementsInterface(t *testing.T) {
var _ v1.WebstoryServiceServer = (*WebstoryServiceServer)(nil)
}