diff options
Diffstat (limited to 'third_party/python/mock-1.0.0/tests/testwith.py')
-rw-r--r-- | third_party/python/mock-1.0.0/tests/testwith.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/python/mock-1.0.0/tests/testwith.py b/third_party/python/mock-1.0.0/tests/testwith.py new file mode 100644 index 0000000000..34529eb9fc --- /dev/null +++ b/third_party/python/mock-1.0.0/tests/testwith.py @@ -0,0 +1,16 @@ +import sys + +if sys.version_info[:2] >= (2, 5): + from tests._testwith import * +else: + from tests.support import unittest2 + + class TestWith(unittest2.TestCase): + + @unittest2.skip('tests using with statement skipped on Python 2.4') + def testWith(self): + pass + + +if __name__ == '__main__': + unittest2.main() |