1 | #!/usr/bin/env python2 |
2 | """pyutil_test.py: Tests for pyutil.py.""" |
3 | from __future__ import print_function |
4 | |
5 | import unittest |
6 | |
7 | import pyutil # module under test |
8 | |
9 | |
10 | class PyUtilTest(unittest.TestCase): |
11 | |
12 | def testBackslashEscape(self): |
13 | print(pyutil.BackslashEscape('foo', 'o')) |
14 | |
15 | |
16 | if __name__ == '__main__': |
17 | unittest.main() |