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:
1
tests/__init__.py
Executable file
1
tests/__init__.py
Executable file
@@ -0,0 +1 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
28
tests/test_modpypes.py
Executable file
28
tests/test_modpypes.py
Executable 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()
|
||||
Reference in New Issue
Block a user