-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add contains and toString #13
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice! Thanks for adding this @calvernaz , and for adding the snapshot test. 🎉
Looks like there's only a small discrepancy - I guess we could create a custom serializer to convert dict
objects to string.. (VTL uses the Java notation of Map.toString)
>> match key: render-result-1
(~) / '{k1=v1, k2=v2}' → "{'k1': 'v1', 'k2': 'v2'}" ... (expected → actual)
/
good catch, have a fix for it, hopefully is good enough |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍 (only a tiny nit suggestion..)
Can you please bump the version and update the change log in the README, then we can release a new version right away.. 👍
d4020a7
to
fcb2b2e
Compare
Adds toString and contains methods. These two have been overridden in community and will be removed once this is merged