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

17 lines
266 B
Python
Raw Permalink 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):
self.assertIsNone(sample.hmm())
2012-04-16 21:31:15 -04:00
if __name__ == '__main__':
unittest.main()