forked from cerc-io/ipld-eth-server
12 lines
163 B
Go
12 lines
163 B
Go
|
package leveldb
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/syndtr/goleveldb/leveldb/testutil"
|
||
|
)
|
||
|
|
||
|
func TestLevelDB(t *testing.T) {
|
||
|
testutil.RunSuite(t, "LevelDB Suite")
|
||
|
}
|