test: Add initial test case for Recur service with memory and logger
This commit is contained in:
parent
e458ee1e9b
commit
5c6842792a
|
@ -1 +1,14 @@
|
|||
package main_test
|
||||
package main
|
||||
|
||||
import (
|
||||
"log/slog"
|
||||
"testing"
|
||||
"time"
|
||||
)
|
||||
|
||||
func TestRecur(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
mem := NewMemory()
|
||||
rec := NewRecur(mem, mem, time.Second, slog.New())
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue