| 1 | #!/usr/bin/env python | 
| 2 | from __future__ import print_function | 
| 3 | """ | 
| 4 | py_meta_test.py: Tests for py_meta.py | 
| 5 | """ | 
| 6 | |
| 7 | import unittest | 
| 8 | |
| 9 | from asdl import py_meta # module under test | 
| 10 | |
| 11 | class AsdlTest(unittest.TestCase): | 
| 12 | |
| 13 | def testPyMeta(self): | 
| 14 | print(py_meta) | 
| 15 | |
| 16 | |
| 17 | if __name__ == '__main__': | 
| 18 | unittest.main() |