mirror of
https://github.com/retailcrm/api-client-go.git
synced 2025-04-03 13:13:37 +03:00
added test
This commit is contained in:
parent
bf6cf4312c
commit
c40056101d
1 changed files with 21 additions and 0 deletions
21
v5/marshaling_test.go
Normal file
21
v5/marshaling_test.go
Normal 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)
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue