gpaste/filestore_memory_test.go
Torjus Håkestad 2ff4b8dfbb
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Initial commit
2022-01-15 19:07:33 +01:00

14 lines
181 B
Go

package gpaste_test
import (
"testing"
"git.t-juice.club/torjus/gpaste"
)
func TestMemoryFileStore(t *testing.T) {
s := gpaste.NewMemoryFileStore()
RunFilestoreTest(s, t)
}