@@ -43,7 +43,7 @@ def wrapper(func):
43
43
@wraps (func )
44
44
def real_wrapper (self ):
45
45
packages_path = sublime .packages_path ()
46
- set_package (packages_path , package )
46
+ # set_package(packages_path, package)
47
47
48
48
if output :
49
49
# set by _Output/unittesting.json
@@ -89,7 +89,7 @@ def condition():
89
89
if isiterable (deferred ):
90
90
yield from deferred
91
91
92
- cleanup_package (packages_path , package )
92
+ # cleanup_package(packages_path, package)
93
93
94
94
yield
95
95
@@ -112,6 +112,27 @@ def assertOk(self, txt, msg=None):
112
112
113
113
class TestUnitTesting (UnitTestingTestCase ):
114
114
115
+ def setUp (self ):
116
+ packages_path = sublime .packages_path ()
117
+ set_package (packages_path , "_Success" )
118
+ set_package (packages_path , "_Failure" )
119
+ set_package (packages_path , "_Error" )
120
+ set_package (packages_path , "_Empty" )
121
+ set_package (packages_path , "_Output" )
122
+ set_package (packages_path , "_Deferred" )
123
+ set_package (packages_path , "_Async" )
124
+ yield 500
125
+
126
+ def tearDown (self ):
127
+ packages_path = sublime .packages_path ()
128
+ cleanup_package (packages_path , "_Success" )
129
+ cleanup_package (packages_path , "_Failure" )
130
+ cleanup_package (packages_path , "_Error" )
131
+ cleanup_package (packages_path , "_Empty" )
132
+ cleanup_package (packages_path , "_Output" )
133
+ cleanup_package (packages_path , "_Deferred" )
134
+ cleanup_package (packages_path , "_Async" )
135
+
115
136
@prepare_package ("_Success" )
116
137
def test_success (self , txt ):
117
138
self .assertOk (txt )
@@ -143,23 +164,40 @@ def test_async(self, txt):
143
164
144
165
class TestSyntax (UnitTestingTestCase ):
145
166
146
- @prepare_package ("_Syntax_Failure" , syntax_test = True , delay = 500 )
167
+ def setUp (self ):
168
+ packages_path = sublime .packages_path ()
169
+ set_package (packages_path , "_Syntax_Failure" )
170
+ set_package (packages_path , "_Syntax_Success" )
171
+ set_package (packages_path , "_Syntax_Error" )
172
+ set_package (packages_path , "_Syntax_Compat_Failure" )
173
+ set_package (packages_path , "_Syntax_Compat_Success" )
174
+ yield 500
175
+
176
+ def tearDown (self ):
177
+ packages_path = sublime .packages_path ()
178
+ cleanup_package (packages_path , "_Syntax_Failure" )
179
+ cleanup_package (packages_path , "_Syntax_Success" )
180
+ cleanup_package (packages_path , "_Syntax_Error" )
181
+ cleanup_package (packages_path , "_Syntax_Compat_Failure" )
182
+ cleanup_package (packages_path , "_Syntax_Compat_Success" )
183
+
184
+ @prepare_package ("_Syntax_Failure" , syntax_test = True )
147
185
def test_fail_syntax (self , txt ):
148
186
self .assertRegexContains (txt , r'^FAILED: 1 of 21 assertions in 1 file failed$' )
149
187
150
- @prepare_package ("_Syntax_Success" , syntax_test = True , delay = 500 )
188
+ @prepare_package ("_Syntax_Success" , syntax_test = True )
151
189
def test_success_syntax (self , txt ):
152
190
self .assertOk (txt )
153
191
154
- @prepare_package ("_Syntax_Error" , syntax_test = True , delay = 500 )
192
+ @prepare_package ("_Syntax_Error" , syntax_test = True )
155
193
def test_error_syntax (self , txt ):
156
194
self .assertRegexContains (txt , r'^ERROR: No syntax_test' )
157
195
158
- @prepare_package ("_Syntax_Compat_Failure" , syntax_compatibility = True , delay = 500 )
196
+ @prepare_package ("_Syntax_Compat_Failure" , syntax_compatibility = True )
159
197
def test_fail_syntax_compatibility (self , txt ):
160
198
self .assertRegexContains (txt , r'^FAILED: 3 errors in 1 of 1 syntax$' )
161
199
162
- @prepare_package ("_Syntax_Compat_Success" , syntax_compatibility = True , delay = 500 )
200
+ @prepare_package ("_Syntax_Compat_Success" , syntax_compatibility = True )
163
201
def test_success_syntax_compatibility (self , txt ):
164
202
self .assertOk (txt )
165
203
@@ -172,16 +210,16 @@ def has_colorschemeunit():
172
210
return False
173
211
174
212
175
- class TestColorScheme (UnitTestingTestCase ):
176
- @skipIf (not has_colorschemeunit (), "ColorSchemeUnit is not installed" )
177
- @prepare_package ("_ColorScheme_Failure" , color_scheme_test = True )
178
- def test_fail_color_scheme (self , txt ):
179
- self .assertRegexContains (txt , r'^There were 14 failures:$' )
213
+ # class TestColorScheme(UnitTestingTestCase):
214
+ # @skipIf(not has_colorschemeunit(), "ColorSchemeUnit is not installed")
215
+ # @prepare_package("_ColorScheme_Failure", color_scheme_test=True)
216
+ # def test_fail_color_scheme(self, txt):
217
+ # self.assertRegexContains(txt, r'^There were 14 failures:$')
180
218
181
- @skipIf (not has_colorschemeunit (), "ColorSchemeUnit is not installed" )
182
- @prepare_package ("_ColorScheme_Success" , color_scheme_test = True )
183
- def test_success_color_scheme (self , txt ):
184
- self .assertOk (txt )
219
+ # @skipIf(not has_colorschemeunit(), "ColorSchemeUnit is not installed")
220
+ # @prepare_package("_ColorScheme_Success", color_scheme_test=True)
221
+ # def test_success_color_scheme(self, txt):
222
+ # self.assertOk(txt)
185
223
186
224
187
225
def tidy_path (path ):
0 commit comments