mirror of
https://github.com/JoelBender/modpypes
synced 2025-10-12 21:15:10 +08:00
29 lines
356 B
Python
Executable File
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()
|