mirror of
https://github.com/zama-ai/concrete.git
synced 2026-01-13 14:58:01 -05:00
14 lines
189 B
Python
14 lines
189 B
Python
"""
|
|
Tests of `version` module.
|
|
"""
|
|
|
|
from concrete import fhe
|
|
|
|
|
|
def test_version_exists():
|
|
"""
|
|
Test `concrete.fhe` has `__version__`.
|
|
"""
|
|
|
|
assert hasattr(fhe, "__version__")
|