1
0
mirror of https://github.com/JoelBender/modpypes synced 2025-10-26 21:49:19 +08:00

framework of a new project

This commit is contained in:
Joel Bender
2015-06-12 14:54:12 -04:00
parent 45f85d40c7
commit 2c52058279
22 changed files with 1057 additions and 0 deletions

1
tests/__init__.py Executable file
View File

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

28
tests/test_modpypes.py Executable file
View File

@@ -0,0 +1,28 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
test_modpypes
----------------------------------
Tests for `modpypes` module.
"""
import unittest
from modpypes import modpypes
class TestModpypes(unittest.TestCase):
def setUp(self):
pass
def test_something(self):
pass
def tearDown(self):
pass
if __name__ == '__main__':
unittest.main()