A decorator designed to make testing optional dependencies painless.
It's common for libraries to have optional dependencies where the code has to detect if they are installed, using a pattern like this:
try:
import something
except ImportError:
import something_else as something
That way something
is always defined and the rest of the codebase does not need to care. But how do we test both
branches under tests?
With fail_importing
, you can just slap a decorator onto your test and the code being tested will act as if
the dependency isn't installed.
@fail_importing("something")
def test_something_else():
...
When the test finishes executing, the name can be imported as normal. It can be applied to normal functions, nested functions, relative imports, and even generators!
full_match is used to determine if the path matches or not, so you can use any regex matching your need. Note that relative imports are resolved to absolute imports before the check is made.