Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8823931
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T06:28:52+00:00 2026-06-14T06:28:52+00:00

I am fairly new to python development and I am not sure what will

  • 0

I am fairly new to python development and I am not sure what will be the best way to inject mocks into a function for unit testing.

I have a function which looks like:

import exampleModule

def func():
    ls = createList()
    exampleModule.send(ls)

In the above code I want to mock exampleModule.send method.

Should I pass the method as argument to the function? Like:

def func(invokeMethod):
    ls = createList()
    invokeMethod(ls)

And in unit test I can pass the mock. But I do not want the caller to specify the invocation method.

What is the right way of doing it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T06:28:54+00:00Added an answer on June 14, 2026 at 6:28 am

    You can use mock library by Michael Foord, which is part Python 3. It makes this kind of mocking very convenient. One way of doing it would be:

    >>> from mock import patch
    >>> import exampleModule
    >>>    
    >>> def func():
    ...     ls = []
    ...     exampleModule.send(ls)
    ... 
    >>> with patch('exampleModule.send') as send:
    ...     func()
    ...     assert send.called
    

    Here we use it as a context manager. But you ca also use patch as a decorator. But there are more ways of using mock and it will probably meet all your needs in mocking/stubbing.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm fairly new to C, not having much need to anything faster than python
I'm fairly new to Python and I have a question about a neat way
I'm fairly new at Python/JS and also automated testing with Selenium/WebDriver, but I have
I'm fairly new to Python, so my apologies in advance if this is much
I am fairly new to Python programming and Threads isn't my area of expertise.
I am fairly new to Python, so I welcome alternative approaches. I have a
I'm fairly new to Python, so I'm trying my hand at some simple code.
I very new to Python, and fairly new to regex. (I have no Perl
I'm currently launching a programme using subprocess.Popen(cmd, shell=TRUE) I'm fairly new to Python, but
I am fairly new to programming and to python and wxpython. I have looked

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.