17 lines
266 B
Python
17 lines
266 B
Python
|
# -*- 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()
|