fixed PY-9253 Broken "add field to class" adds the field to the instance instead.

moved tests to the separate testCase
This commit is contained in:
Ekaterina Tuzova
2013-03-22 18:13:13 +04:00
parent 00eafcb011
commit 9750faf20d
20 changed files with 84 additions and 44 deletions
@@ -0,0 +1,10 @@
__author__ = 'ktisha'
class A(object):
FIELD = None
def method(self):
var = A.FIELD
var = self.test