| 1 | #!/usr/bin/env python2
 | 
| 2 | # Copyright 2016 Andy Chu. All rights reserved.
 | 
| 3 | # Licensed under the Apache License, Version 2.0 (the "License");
 | 
| 4 | # you may not use this file except in compliance with the License.
 | 
| 5 | # You may obtain a copy of the License at
 | 
| 6 | #
 | 
| 7 | #   http://www.apache.org/licenses/LICENSE-2.0
 | 
| 8 | from __future__ import print_function
 | 
| 9 | """
 | 
| 10 | line_input_test.py: Tests for line_input
 | 
| 11 | """
 | 
| 12 | 
 | 
| 13 | import unittest
 | 
| 14 | 
 | 
| 15 | #from mycpp.mylib import log
 | 
| 16 | 
 | 
| 17 | import line_input
 | 
| 18 | 
 | 
| 19 | 
 | 
| 20 | class LineInputTest(unittest.TestCase):
 | 
| 21 | 
 | 
| 22 |   def testMatchOshToken(self):
 | 
| 23 |     print(dir(line_input))
 | 
| 24 | 
 | 
| 25 | 
 | 
| 26 | if __name__ == '__main__':
 | 
| 27 |   unittest.main()
 |