10 lines
155 B
Python
10 lines
155 B
Python
|
import pytest
|
||
|
|
||
|
pytest.importorskip("psutil")
|
||
|
|
||
|
pytest.importorskip("netifaces")
|
||
|
|
||
|
def test_load_module():
|
||
|
__import__("modules.contrib.network_traffic")
|
||
|
|