mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
When user wants to generate test for class ``SpamEggs`` that has no methods: * For pytest generate "test_spam_eggs" function * for UniTest "class TestSpamEggs" ``PyTestCreationModel`` also rewritten a little to make it slightly more readable. GitOrigin-RevId: cc5d774ad684844f5fd9c86634dbcd0d2343437f
15 lines
155 B
Python
15 lines
155 B
Python
class Spam:
|
|
def eggs(self):
|
|
pass
|
|
|
|
def eggs_and_ham(self):
|
|
pass
|
|
|
|
|
|
|
|
def test_foo():
|
|
pass
|
|
|
|
class SpamSpamSpamBakedBeans:
|
|
pass
|