minipaste/store/memory_test.go

13 lines
172 B
Go
Raw Permalink Normal View History

2022-04-20 00:37:27 +00:00
package store_test
import (
"testing"
"git.t-juice.club/torjus/minipaste/store"
)
func TestMemoryStore(t *testing.T) {
s := store.NewMemoryStore()
testStore(s, t)
}