2015-08-11 21:27:14 +00:00
|
|
|
package state
|
2015-07-04 00:48:02 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/hashicorp/go-memdb"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestStateStoreSchema(t *testing.T) {
|
|
|
|
schema := stateStoreSchema()
|
|
|
|
_, err := memdb.NewMemDB(schema)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
}
|