aboutsummaryrefslogblamecommitdiffstats
path: root/Godeps/_workspace/src/github.com/syndtr/goleveldb/leveldb/leveldb_suite_test.go
blob: 245b1fd4d38cec1729c8f6b4dd3ff4ca9019a7f5 (plain) (tree)



















                                                      
package leveldb

import (
    "testing"

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

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

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

    RegisterFailHandler(Fail)
    RunSpecs(t, "Leveldb Suite")

    RegisterTestingT(t)
    testutil.RunDefer("teardown")
}