8 lines
109 B
Python
8 lines
109 B
Python
|
import pytest
|
||
|
|
||
|
pytest.importorskip("tkinter")
|
||
|
|
||
|
def test_load_module():
|
||
|
__import__("modules.core.vault")
|
||
|
|