8 lines
113 B
Python
8 lines
113 B
Python
|
import pytest
|
||
|
|
||
|
pytest.importorskip("tkinter")
|
||
|
|
||
|
def test_load_module():
|
||
|
__import__("modules.contrib.arandr")
|
||
|
|