1 | #!/usr/bin/env python2 |
2 | """ |
3 | word_compile_test.py: Tests for word_compile.py |
4 | """ |
5 | |
6 | import unittest |
7 | |
8 | #from core import word_compile # module under test |
9 | |
10 | |
11 | class WordCompileTest(unittest.TestCase): |
12 | pass |
13 | |
14 | |
15 | if __name__ == '__main__': |
16 | unittest.main() |