Move codec test helper to an internal package

This commit is contained in:
Bjørn Erik Pedersen
2016-04-16 19:48:28 +02:00
parent 326601f21e
commit 54f1b599fe
5 changed files with 13 additions and 11 deletions

View File

@@ -3,9 +3,9 @@ package json
import (
"testing"
"github.com/asdine/storm/codec"
"github.com/asdine/storm/codec/internal"
)
func TestJSON(t *testing.T) {
codec.RountripTester(t, Codec)
internal.RoundtripTester(t, Codec)
}