mumps-docs/python-tutorials/tests/test_advanced.py

17 lines
266 B
Python
Raw Normal View History

2020-09-30 14:31:20 -04:00
# -*- coding: utf-8 -*-
from .context import sample
import unittest
class AdvancedTestSuite(unittest.TestCase):
"""Advanced test cases."""
def test_thoughts(self):
self.assertIsNone(sample.hmm())
if __name__ == '__main__':
unittest.main()