summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/stretchr/objx/map_for_test.go
blob: 6beb5067569746d40dbd13de6f0f07ae9aa6116b (plain)
1
2
3
4
5
6
7
8
9
10
package objx

var TestMap map[string]interface{} = map[string]interface{}{
	"name": "Tyler",
	"address": map[string]interface{}{
		"city":  "Salt Lake City",
		"state": "UT",
	},
	"numbers": []interface{}{"one", "two", "three", "four", "five"},
}