aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/memdb/memdb_suite_test.go
blob: 788539a87b5999ab845704c2d9a9aa48898cffc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package memdb

import (
    "testing"

    . "github.com/onsi/ginkgo"
    . "github.com/onsi/gomega"

    "github.com/syndtr/goleveldb/leveldb/testutil"
)

func TestMemdb(t *testing.T) {
    testutil.RunDefer()

    RegisterFailHandler(Fail)
    RunSpecs(t, "Memdb Suite")
}