mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
For UnitTest you need to create class. However, pytest accepts plain function tests ("test_..").
We should not force user to use classes.
Also, many small improvement added:
* detect test folder
* create tests for everything in class
* do not create tests for tests
GitOrigin-RevId: 85dbe09e4fea47a116aaac9c00cec884f46bae9e
7 lines
68 B
Python
7 lines
68 B
Python
def eggs():
|
|
assert False
|
|
|
|
|
|
def eggs_and_ham():
|
|
assert False
|