OILS / data_lang / pretty_test.py View on Github | oilshell.org

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