mirror of
https://github.com/lordmathis/lemma.git
synced 2025-11-06 07:54:22 +00:00
13 lines
222 B
Go
13 lines
222 B
Go
package storage_test
|
|
|
|
import (
|
|
"novamd/internal/storage"
|
|
"testing"
|
|
)
|
|
|
|
func SetupTestService(t *testing.T) (*storage.Service, *MapFS) {
|
|
fs := &MapFS{}
|
|
srv := storage.NewServiceWithFS("/test/root", fs)
|
|
return srv, fs
|
|
}
|