1
0
Fork 0
mirror of https://github.com/daylinmorgan/viv.git synced 2025-01-10 00:17:31 -06:00
viv/tests/test_use.py

17 lines
335 B
Python

import sys
import pytest
from viv import use
def test_use():
with pytest.raises(ImportError):
import pyjokes # noqa
use("pyjokes")
import pyjokes # noqa
with pytest.raises(ImportError):
from sample.simple import add_one # noqa
assert len([p for p in sys.path if "site-packages" in p]) == 1