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

Create decorator for test functions #17

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

Create decorator for test functions #17

ivancrneto opened this issue Jan 6, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@ivancrneto
Copy link
Owner

Right now we do the following:

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'
        mox.verify(m_getcwd)

Be able to do:

class TestOs:

    @stubout('os.getcwd')
    def test_getcwd(self, m_getcwd):
        m_getcwd.to_be.called_with().and_return('/mox/path')

        assert os.getcwd() == '/mox/path'
        mox.verify(m_getcwd)
@ivancrneto ivancrneto added the enhancement New feature or request label 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
Projects
None yet
Development

No branches or pull requests

1 participant