Add ORAN Python SDK first draft
[it/dep.git] / smo-install / test / pythonsdk / unit-tests / test_version.py
1 #!/usr/bin/env python3
2 # SPDX-License-Identifier: Apache-2.0
3 """Test version module."""
4
5 import oransdk.version as version
6
7 def test_version():
8   """Check version is the right one."""
9   assert version.__version__ == '1.0.0'