python-project-structure-sa.../tests/test_advanced.py

16 lines
246 B
Python
Raw Normal View History

2012-04-16 21:31:15 -04:00
# -*- 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()