gpaste/files/filestore_memory_test.go

14 lines
185 B
Go
Raw Normal View History

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