Files
openide/python/testData/quickFixes/PyAddFieldQuickFixTest/addClassField.py
Mikhail Golubev 532e18e4d9 Add "Py" prefix to AddImportQuickFixTest and several other quick fix tests
otherwise it's easy to overlook it especially considering that there is
also (confusingly) PyAddImportTest
2017-03-21 18:10:12 +03:00

9 lines
276 B
Python

__author__ = 'ktisha'
class A(object):
def method(self):
var = A.<warning descr="Unresolved attribute reference 'FIELD' for class 'A'"><caret>FIELD</warning>
var = self.<warning descr="Unresolved attribute reference 'test' for class 'A'">test</warning>