OILS / tools / fmt_test.py View on Github | oilshell.org

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