mirror of
https://github.com/asdine/storm.git
synced 2025-10-06 23:32:51 +08:00

To prevent package import cycles, the interface `EncodeDecoder` is also moved into `codec` where it fits naturally. Fixes #19
12 lines
135 B
Go
12 lines
135 B
Go
package json
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/asdine/storm/codec"
|
|
)
|
|
|
|
func TestJSON(t *testing.T) {
|
|
codec.RountripTester(t, Codec)
|
|
}
|