Skip to Content
Modern Python Standard Library Cookbook
book

Modern Python Standard Library Cookbook

by Alessandro Molina
August 2018
Intermediate to advanced
366 pages
10h 14m
English
Packt Publishing
Content preview from Modern Python Standard Library Cookbook

Mocking

When testing your code, you might face the need to replace the behavior of an existing function or class and to track whether a function was called or not with the proper arguments.

For example, say you have a function such as the following:

def print_division(x, y):
    print(x / y)

To test it, we don't want to go to the screen and check the output, but we still want to know whether the printed value was the expected one.

So a possible approach might be to replace print with something that doesn't print anything, but allows us to track the provided argument (which is the value that would be printed).

This is exactly the meaning of mocking: replacing an object or function in the code base with one that does nothing but allows us to ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Advanced Python Development: Using Powerful Language Features in Real-World Applications

Advanced Python Development: Using Powerful Language Features in Real-World Applications

Matthew Wilkes

Publisher Resources

ISBN: 9781788830829Supplemental Content