mirror of
https://github.com/nikdoof/pyzkb.git
synced 2025-12-13 18:22:14 +00:00
28 lines
372 B
Python
Executable File
28 lines
372 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
test_pyzkb
|
|
----------------------------------
|
|
|
|
Tests for `pyzkb` module.
|
|
"""
|
|
|
|
import unittest
|
|
|
|
from pyzkb import pyzkb
|
|
|
|
|
|
class TestPyzkb(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def test_something(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |