You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be super cool to have an exclude list for the verify function. Sometimes the match is gonna be between complex or deep structs and right now is mandatory to provide an exact struct match. Which is perfect plenty of times, but in some scenarios could be interesting to just care about specific values for the match.
Like, let's suppose that I'm expecting an struct like:
type PeriodCalc struct {
Something string
Blablabla string
Value string
Trace []*Log
}
But maybe I don't care about this Trace array and I want just to ignore it and check the other variables.
The text was updated successfully, but these errors were encountered:
It would be super cool to have an exclude list for the verify function. Sometimes the match is gonna be between complex or deep structs and right now is mandatory to provide an exact struct match. Which is perfect plenty of times, but in some scenarios could be interesting to just care about specific values for the match.
Like, let's suppose that I'm expecting an struct like:
But maybe I don't care about this Trace array and I want just to ignore it and check the other variables.
The text was updated successfully, but these errors were encountered: