aboutsummaryrefslogtreecommitdiff
path: root/tracker/query_test.go
blob: 3959255756096d7b0cc5527d4410209d35b56966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package tracker

import "testing"

func TestMarshalQuery(t *testing.T) {
	q := struct {
		A string
		B int
		C string
	}{
		A: "test",
		B: 100,
	}
	v, err := MarshalQuery(q)
	if err != nil {
		t.Error(err)
	}
	t.Log(v)

}