diff -r 000000000000 -r 6474c204b198 python/mock-1.0.0/tests/testwith.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python/mock-1.0.0/tests/testwith.py Wed Dec 31 06:09:35 2014 +0100 @@ -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()