1
- import sublime
1
+ import sys
2
2
3
- try :
4
- from unittest .case import _ExpectedFailure , _UnexpectedSuccess
5
- except ImportError :
6
- pass
7
3
from unittest import skipIf
8
- from unittesting import DeferrableTestCase , expectedFailure
4
+ from unittesting import DeferrableTestCase
5
+ from unittesting import expectedFailure
6
+
7
+ PY33 = sys .version_info == (3 ,3 )
8
+ if PY33 :
9
+ from unittest .case import _ExpectedFailure , _UnexpectedSuccess
9
10
10
11
11
12
class TestExpectedFailures (DeferrableTestCase ):
12
- @skipIf (sublime . version () >= '4000' , "Sublime Text 4 has optimization on" )
13
+ @skipIf (not PY33 , "Sublime Text 4 has optimization on" )
13
14
@expectedFailure
14
15
def test_direct_failure1 (self ):
15
16
assert False
@@ -24,7 +25,7 @@ def testitem():
24
25
yield
25
26
1 / 0
26
27
27
- ex = ZeroDivisionError if sublime . version () >= "4000" else _ExpectedFailure
28
+ ex = _ExpectedFailure if PY33 else ZeroDivisionError
28
29
try :
29
30
yield from testitem ()
30
31
except ex :
@@ -37,15 +38,15 @@ def test_expected_failure(self):
37
38
def testitem ():
38
39
1 / 0
39
40
40
- ex = ZeroDivisionError if sublime . version () >= "4000" else _ExpectedFailure
41
+ ex = _ExpectedFailure if PY33 else ZeroDivisionError
41
42
try :
42
43
yield from testitem ()
43
44
except ex :
44
45
pass
45
46
else :
46
47
self .fail ('Expected _ExpectedFailure' )
47
48
48
- @skipIf (sublime . version () >= '4000' , "not applicable in Python 3.8" )
49
+ @skipIf (not PY33 , "not applicable in Python 3.8" )
49
50
def test_unexpected_success_coroutine (self ):
50
51
51
52
@expectedFailure
@@ -59,7 +60,7 @@ def testitem():
59
60
else :
60
61
self .fail ('Expected _UnexpectedSuccess' )
61
62
62
- @skipIf (sublime . version () >= '4000' , "not applicable in Python 3.8" )
63
+ @skipIf (not PY33 , "not applicable in Python 3.8" )
63
64
def test_unexpected_success (self ):
64
65
65
66
@expectedFailure
0 commit comments