This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
|
"""
|
|
tests for the general behaviour of the libraries availability
|
|
"""
|
|
import unittest
|
|
import libpt
|
|
|
|
class TestLibptGeneral(unittest.TestCase):
|
|
|
|
def test_loaded(self):
|
|
assert libpt.is_loaded()
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|
|
|
|
|