We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given the object:
class Foo(object): def bar(one, two, three=None): pass
When recording or replaying a MockObject(Foo)
m_foo = mox.MockObject(Foo) # should be recorded in the same for both calls. m_foo.bar(1, 2, 3) m_foo.bar(1, 2, three=3)
And verify should work for either:
m_foo.bar(1, 2, 3) m_foo.bar(1, 2, 3)
... or ...
m_foo.bar(1, 2, three=3) m_foo.bar(1, 2, three=3)
... or any combination thereof ...
This would require inspecting the method signature, and properly mapping keyword args, where appropriate.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given the object:
When recording or replaying a MockObject(Foo)
And verify should work for either:
... or ...
... or any combination thereof ...
This would require inspecting the method signature, and properly mapping
keyword args, where appropriate.
The text was updated successfully, but these errors were encountered: