8 lines
114 B
Python
8 lines
114 B
Python
|
import pytest
|
||
|
|
||
|
pytest.importorskip("requests")
|
||
|
|
||
|
def test_load_module():
|
||
|
__import__("modules.contrib.github")
|
||
|
|