Started to add tests for the tools.

This commit is contained in:
Andrew Hamilton 2016-02-05 01:37:51 +00:00
parent 33f75aefae
commit e34df613ca
23 changed files with 661 additions and 0 deletions

15
golden-files/input/hi3_test.py Executable file
View file

@ -0,0 +1,15 @@
import unittest
import hi3
class HiTestCase(unittest.TestCase):
def test_hi(self):
hi3.hi()
if __name__ == "__main__":
unittest.main()