Skip to content

Instantly share code, notes, and snippets.

@pitrk
pitrk / _mock_file_with_string.md
Last active November 15, 2023 13:34
Mock file with string in Python

Mock file with string in Python

This is an example on how to mock a file with string.

Use case

Testing a function which opens a file and does some kind of operation on it.

About the example