File: testwith.py

package info (click to toggle)
python-mock 1.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,032 kB
  • ctags: 1,296
  • sloc: python: 5,283; makefile: 49
file content (16 lines) | stat: -rw-r--r-- 340 bytes parent folder | download | duplicates (33)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()