refactor: cleanup and add stub

This commit is contained in:
Mark Bailey 2025-08-31 19:30:53 -04:00
parent 33f978a531
commit 0419251fd1
2 changed files with 6 additions and 1 deletions

View File

@ -25,7 +25,6 @@ func newTestStore(t *testing.T) *badgerStore {
return store
}
// generic subtest runner
type subtest struct {
name string
run func(t *testing.T)

View File

@ -1 +1,7 @@
package internal
import "testing"
func TestNewRouteCache(t *testing.T) {
// TODO: implement
}