13 lines
172 B
Go
13 lines
172 B
Go
|
package store_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"git.t-juice.club/torjus/minipaste/store"
|
||
|
)
|
||
|
|
||
|
func TestMemoryStore(t *testing.T) {
|
||
|
s := store.NewMemoryStore()
|
||
|
testStore(s, t)
|
||
|
}
|