OILS / pyext / line_input_test.py View on Github | oilshell.org

27 lines, 8 significant
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
8from __future__ import print_function
9"""
10line_input_test.py: Tests for line_input
11"""
12
13import unittest
14
15#from mycpp.mylib import log
16
17import line_input
18
19
20class LineInputTest(unittest.TestCase):
21
22 def testMatchOshToken(self):
23 print(dir(line_input))
24
25
26if __name__ == '__main__':
27 unittest.main()