tests: gui & tk import

This commit is contained in:
Casper da Costa-Luis 2021-01-10 17:29:50 +00:00
parent 69911354ad
commit 469a08008b
No known key found for this signature in database
GPG Key ID: 986B408043AE090D
2 changed files with 14 additions and 0 deletions

7
tests/tests_gui.py Normal file
View File

@ -0,0 +1,7 @@
"""Test `tqdm.gui`."""
from .tests_tqdm import importorskip
def test_gui_import():
"""Test `tqdm.gui` import"""
importorskip('tqdm.gui')

7
tests/tests_tk.py Normal file
View File

@ -0,0 +1,7 @@
"""Test `tqdm.tk`."""
from .tests_tqdm import importorskip
def test_tk_import():
"""Test `tqdm.tk` import"""
importorskip('tqdm.tk')