9 lines
128 B
Python
9 lines
128 B
Python
|
import pytest
|
||
|
|
||
|
from knoc import __version__
|
||
|
|
||
|
|
||
|
@pytest.mark.asyncio
|
||
|
async def test_version():
|
||
|
assert __version__ is not None
|