14 lines
181 B
Go
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)
|
||
|
}
|