eris/tests/golden-files/input/hi3_test.py

16 lines
159 B
Python
Raw Normal View History

2016-02-05 01:37:51 +00:00
import unittest
import hi3
class HiTestCase(unittest.TestCase):
def test_hi(self):
hi3.hi()
if __name__ == "__main__":
unittest.main()