harness-drone/vendor/github.com/stretchr/objx/map_for_test.go
2015-09-30 14:00:48 -07:00

10 lines
247 B
Go

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"},
}