This repository was archived by the owner on Apr 14, 2022. It is now read-only.
File tree 2 files changed +3
-6
lines changed 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,8 @@ def __init__(self):
151
151
Baseline . CompareToFile ( BaselineFileName , json ) ;
152
152
}
153
153
154
- [ TestMethod , Priority ( 0 ) ]
154
+ [ TestMethod , Priority ( 0 ) ]
155
+ [ Ignore ( "Todo: super() persistence support, Asserts in debug due to no model found for super" ) ]
155
156
public async Task ClassesWithSuper ( ) {
156
157
const string code = @"
157
158
class A:
@@ -164,8 +165,6 @@ def methodB(self):
164
165
165
166
b = B().methodB()
166
167
" ;
167
- Assert . Inconclusive ( "Todo: super() persistence support" ) ;
168
-
169
168
var analysis = await GetAnalysisAsync ( code ) ;
170
169
analysis . Should ( ) . HaveVariable ( "b" ) . Which . Should ( ) . HaveType ( "super" ) ;
171
170
Original file line number Diff line number Diff line change @@ -205,6 +205,7 @@ def hello(self):
205
205
}
206
206
207
207
[ TestMethod , Priority ( 0 ) ]
208
+ [ Ignore ( "Todo: super() multiple Inheritance support" ) ]
208
209
public async Task MultipleInheritanceSuperShouldWalkDecendants ( ) {
209
210
var testModPath = TestData . GetTestSpecificUri ( "test.py" ) ;
210
211
const string code = @"
@@ -225,9 +226,6 @@ def child_func(self):
225
226
pass
226
227
227
228
" ;
228
-
229
- Assert . Inconclusive ( "Todo: super() multiple Inheritance support" ) ;
230
-
231
229
await CreateServicesAsync ( PythonVersions . LatestAvailable3X ) ;
232
230
var rdt = Services . GetService < IRunningDocumentTable > ( ) ;
233
231
You can’t perform that action at this time.
0 commit comments