forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
358 B
26 lines
358 B
package ethdb
|
|
|
|
/*
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
)
|
|
|
|
func TestCompression(t *testing.T) {
|
|
db, err := NewLDBDatabase("testdb")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
in := make([]byte, 10)
|
|
db.Put([]byte("test1"), in)
|
|
out, err := db.Get([]byte("test1"))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if bytes.Compare(out, in) != 0 {
|
|
t.Error("put get", in, out)
|
|
}
|
|
}
|
|
*/
|
|
|