1 | #!/usr/bin/env python2 |
2 | """ |
3 | fmt_test.py |
4 | """ |
5 | |
6 | import unittest |
7 | |
8 | from tools import fmt # module under test |
9 | |
10 | |
11 | class FmtTest(unittest.TestCase): |
12 | |
13 | def testFoo(self): |
14 | print(fmt) |
15 | |
16 | |
17 | if __name__ == '__main__': |
18 | unittest.main() |