Torjus Håkestad
150ffc3400
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
16 lines
234 B
Go
16 lines
234 B
Go
package files_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.t-juice.club/torjus/gpaste/files"
|
|
)
|
|
|
|
func TestMemoryFileStore(t *testing.T) {
|
|
newFunc := func() files.FileStore {
|
|
return files.NewMemoryFileStore()
|
|
}
|
|
|
|
RunFilestoreTest(newFunc, t)
|
|
}
|