Skip to content
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

Improve mocked methods description #18

Open
ivancrneto opened this issue Jan 6, 2024 · 0 comments
Open

Improve mocked methods description #18

ivancrneto opened this issue Jan 6, 2024 · 0 comments
Labels
enhancement New feature or request good first issue Good for newcomers

Comments

@ivancrneto
Copy link
Owner

ivancrneto commented Jan 6, 2024

Right now, if we do that:

class TestOs:
    def test_getcwd(self):
        with stubout(os, "getcwd") as m_getcwd, expect:
            m_getcwd.to_be.called_with().and_return("/mox/path")

        assert os.getcwd() == "/mox/path"
        # the following is an extra unexpected call
        assert os.getcwd() == "/mox/path"
        mox.verify(m_getcwd)

we get the following error:

mox.exceptions.UnexpectedMethodCallError: Unexpected method call builtin_function_or_method.__call__() -> None

we need to change it to be:

mox.exceptions.UnexpectedMethodCallError: Unexpected method call <built-in function 
os.getcwd>.__call__() -> "/mox/path"
@ivancrneto ivancrneto added enhancement New feature or request good first issue Good for newcomers labels Jan 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant