feat(frontend-python): add version to fhe module

This commit is contained in:
Umut
2023-07-19 10:25:40 +02:00
parent b9a747cceb
commit 9c4dc343f0
4 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
"""
Tests of `version` module.
"""
from concrete import fhe
def test_version_exists():
"""
Test `concrete.fhe` has `__version__`.
"""
assert hasattr(fhe, "__version__")