smarty / assertions

Fluent assertion-style functions used by goconvey and gunit. Can also be used in any test or application.
Other
100 stars 34 forks source link

Roll go-render to Fix #8 #9

Closed riannucci closed 8 years ago

riannucci commented 8 years ago

From #8:

New features:

correct sorting for all map key types abbreviated rendering for explicit types. e.g. map[myString]struct{a, b int}{"hi": {1, 2}} will now render like map[pkg.myString]struct { a int; b int }{"hi": {1, 2}} instead of map[pkg.myString]struct { a int; b int }{pkg.myString("hi"): {a:1, b:2}}

mdwhatcott commented 8 years ago

Thanks!