Satheesh
Results
2
issues of
Satheesh
Say I have a list ``` [{"foo" : "bar"}, {"foo: "bar2"}, {"foo" : "bar"},{"random":"1"}] ``` Is there a way of asserting that the list contains exactly 2 occurrences of {"foo":"bar"}...
For a specific usecase, I needed to parse a date of format `yyyy-mm-dd` where each component might be prefixed by a zero I am trying to write a custom parser...