Skip to content
Snippets Groups Projects
test_advanced.py 266 B
Newer Older
  • Learn to ignore specific revisions
  • Kenneth Reitz's avatar
    Kenneth Reitz committed
    # -*- coding: utf-8 -*-
    
    from .context import sample
    
    import unittest
    
    
    class AdvancedTestSuite(unittest.TestCase):
        """Advanced test cases."""
    
        def test_thoughts(self):
    
            self.assertIsNone(sample.hmm())
    
    Kenneth Reitz's avatar
    Kenneth Reitz committed
    
    
    if __name__ == '__main__':
    
        unittest.main()