Rex Shen
Results
2
issues of
Rex Shen
The following code snippet demonstrates the issue(run on OSX): ``` python from robber import expect import json abc=json.loads('{"a": "abc"}') expect(abc['a']).to.equal('abc') ``` Run the above will generate the following exception message:...
I encouter a problem with the following code snippet(run in OSX): ``` python from robber import expect import json abc=json.loads('{"a": "a string"}') expect(abc['a']).to.be.a.string() ``` the above expect statement will generate...