mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-14 02:57:52 +08:00
15 lines
251 B
Go
15 lines
251 B
Go
package store_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/elves/elvish/pkg/store"
|
|
"github.com/elves/elvish/pkg/store/storetest"
|
|
)
|
|
|
|
func TestCmd(t *testing.T) {
|
|
tStore, cleanup := store.MustGetTempStore()
|
|
defer cleanup()
|
|
storetest.TestCmd(t, tStore)
|
|
}
|