8 lines
118 B
Python
8 lines
118 B
Python
|
import pytest
|
||
|
|
||
|
pytest.importorskip("subprocess")
|
||
|
|
||
|
def test_load_module():
|
||
|
__import__("modules.contrib.deadbeef")
|
||
|
|