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

  • Home
  • SEARCH
  • 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 6156457
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:36:48+00:00 2026-05-23T20:36:48+00:00

I know how to mock methods in Python using flexmock, like flexmock(subprocess).should_receive(‘call’).replace_with(my_func) How does

  • 0

I know how to mock methods in Python using flexmock, like

 flexmock(subprocess).should_receive('call').replace_with(my_func)

How does one mock functions outside objects, or for example glob, which was imported via from glob import glob instead of import glob?

I have found mocking functions using python mock as a similar question, but it doesn’t answer my question.

  • 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-05-23T20:36:49+00:00Added an answer on May 23, 2026 at 8:36 pm

    Since you’re importing the glob() function directly into the local namespace you have to get a handle on the current module.

    from flexmock import flexmock
    from glob import glob
    import sys
    
    flexmock(sys.modules[__name__]).should_receive('glob')
    

    You could also do an “import glob as glob_module” or something along those lines to avoid the sys.modules lookup.

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

Sidebar

Related Questions

Does anyone know whether there's a way to mock Entity Data Provider so Unit
I'd like to know how do you test your methods if the libs you
I'm curious to know if there is an easy way to mock an IMAP
I know that I can do something like $int = (int)99; //(int) has a
How to mock methods with void return type? I implemented an observer pattern but
As some of you will know, it is generally not possible to mock a
I'm using the mock library written by Michael Foord to help with my testing
is it legal to MOQ a class that does not inherit an interface like
I need to develop a file indexing application in python and wanted to know
I am using Google Mock 1.6 RC and am trying to Mock a COM

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.