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