12 lines
177 B
Python
12 lines
177 B
Python
|
import pytest
|
||
|
|
||
|
pytest.importorskip("tkinter")
|
||
|
|
||
|
pytest.importorskip("tkinter")
|
||
|
|
||
|
pytest.importorskip("tkinter")
|
||
|
|
||
|
def test_load_module():
|
||
|
__import__("modules.contrib.system")
|
||
|
|