1
0
mirror of https://github.com/JoelBender/modpypes synced 2025-10-12 21:15:10 +08:00
modpypes/tests/test_pdu.py
2015-06-19 22:25:35 -04:00

29 lines
356 B
Python
Executable File

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