16 lines
No EOL
246 B
Python
16 lines
No EOL
246 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from .context import sample
|
|
|
|
import unittest
|
|
|
|
|
|
class AdvancedTestSuite(unittest.TestCase):
|
|
"""Advanced test cases."""
|
|
|
|
def test_thoughts(self):
|
|
sample.hmm()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |