open-nomad/nomad/state/schema_test.go

16 lines
233 B
Go
Raw Normal View History

package state
2015-07-04 00:48:02 +00:00
import (
"testing"
2019-01-15 19:46:12 +00:00
memdb "github.com/hashicorp/go-memdb"
2015-07-04 00:48:02 +00:00
)
func TestStateStoreSchema(t *testing.T) {
schema := stateStoreSchema()
_, err := memdb.NewMemDB(schema)
if err != nil {
t.Fatalf("err: %v", err)
}
}