mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-30 10:45:18 -06:00
24 lines
430 B
Go
24 lines
430 B
Go
package chunks
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/attic-labs/noms/Godeps/_workspace/src/github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestMemoryStoreTestSuite(t *testing.T) {
|
|
suite.Run(t, &MemoryStoreTestSuite{})
|
|
}
|
|
|
|
type MemoryStoreTestSuite struct {
|
|
ChunkStoreTestSuite
|
|
}
|
|
|
|
func (suite *MemoryStoreTestSuite) SetupTest() {
|
|
suite.store = &MemoryStore{}
|
|
}
|
|
|
|
func (suite *MemoryStoreTestSuite) TearDownTest() {
|
|
suite.store.Close()
|
|
}
|