mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-20 11:55:18 +00:00
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")
|
||
|
}
|