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

import (
    "testing"

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

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

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

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