Initial commit.

This commit is contained in:
2014-08-04 17:26:10 +01:00
commit f40727a61e
30 changed files with 1343 additions and 0 deletions

1
tests/__init__.py Executable file
View File

@@ -0,0 +1 @@
# -*- coding: utf-8 -*-

28
tests/test_pyzkb.py Executable file
View 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()