Coverage for tests\test_app.py: 100.00%

4 statements  

« prev     ^ index     » next       coverage.py v7.4.3, created at 2024-03-22 23:23 +0100

1# -*- coding: utf-8 -*- 

2 

3""" 

4* Name: interactive-clustering-gui/tests/test_app.py 

5* Description: Unittests for `app` module. 

6* Author: Erwan Schild 

7* Created: 22/02/2022 

8* Licence: CeCILL (https://cecill.info/licences.fr.html) 

9""" 

10 

11# ============================================================================== 

12# IMPORT PYTHON DEPENDENCIES 

13# ============================================================================== 

14 

15# None 

16 

17 

18# ============================================================================== 

19# test_is_importable 

20# ============================================================================== 

21def test_is_importable(): 

22 """ 

23 Test that the `app` module is importable. 

24 """ 

25 from cognitivefactory.interactive_clustering_gui import app # noqa: C0415 (not top level import, it's fine) 

26 

27 assert app