mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-14 02:57:52 +08:00
13 lines
179 B
Go
13 lines
179 B
Go
package store_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"src.elv.sh/pkg/store"
|
|
"src.elv.sh/pkg/store/storetest"
|
|
)
|
|
|
|
func TestDir(t *testing.T) {
|
|
storetest.TestDir(t, store.MustTempStore(t))
|
|
}
|