mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
340 B
Python
17 lines
340 B
Python
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()
|