| 1 | #!/usr/bin/env python2 | 
| 2 | from __future__ import print_function | 
| 3 | |
| 4 | import unittest | 
| 5 | |
| 6 | #from osh import builtin_comp # module under test | 
| 7 | |
| 8 | |
| 9 | class BuiltinCompTest(unittest.TestCase): | 
| 10 | |
| 11 | def testFoo(self): | 
| 12 | return | 
| 13 | |
| 14 | |
| 15 | if __name__ == '__main__': | 
| 16 | unittest.main() |