gpaste/filestore_memory_test.go

14 lines
181 B
Go
Raw Normal View History

2022-01-15 18:07:33 +00:00
package gpaste_test
import (
"testing"
"git.t-juice.club/torjus/gpaste"
)
func TestMemoryFileStore(t *testing.T) {
s := gpaste.NewMemoryFileStore()
RunFilestoreTest(s, t)
}