Refactored extract method tests

This commit is contained in:
Andrey Vlasovskikh
2012-05-22 22:23:35 +04:00
parent cf23be8e1f
commit c10a567b73
53 changed files with 321 additions and 58 deletions

View File

@@ -0,0 +1,8 @@
class C:
@classmethod
def baz(cls):
print "hello world"
@classmethod
def foo(cls):
cls.baz()