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

import (
    "testing"

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

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

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

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