mirror of
https://github.com/nikdoof/pyzkb.git
synced 2025-12-13 18:22:14 +00:00
Initial commit.
This commit is contained in:
1
tests/__init__.py
Executable file
1
tests/__init__.py
Executable file
@@ -0,0 +1 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
28
tests/test_pyzkb.py
Executable file
28
tests/test_pyzkb.py
Executable file
@@ -0,0 +1,28 @@
|
||||
#!/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()
|
||||
Reference in New Issue
Block a user