added test

This commit is contained in:
yura 2021-02-25 13:21:31 +03:00
parent bf6cf4312c
commit c40056101d

21
v5/marshaling_test.go Normal file
View file

@ -0,0 +1,21 @@
package v5
import (
"encoding/json"
"reflect"
"testing"
)
func TestTag_MarshalJSON(t *testing.T) {
tags := []Tag{
{"first", "#3e89b6", false},
{"second", "#ffa654", false},
}
names := []byte(`["first","second"]`)
str, _ := json.Marshal(tags)
eq := reflect.DeepEqual(str, names)
if eq != true {
t.Errorf("Marshaled: %#v\nExpected: %#v\n", str, names)
}
}