Files
storm/codec/json/json_test.go
Bjørn Erik Pedersen a1bf9947b1 Move JSON code below /codec
To prevent package import cycles, the interface
`EncodeDecoder` is also moved into `codec` where it fits naturally.

Fixes #19
2016-04-16 17:12:11 +02:00

12 lines
135 B
Go

package json
import (
"testing"
"github.com/asdine/storm/codec"
)
func TestJSON(t *testing.T) {
codec.RountripTester(t, Codec)
}