Files
openide/python/testData/create_tests/create_tst.expected.py
Ilya.Kazakevich d416323604 PY-15021: Support pytest test creation
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
2019-08-29 13:44:54 +00:00

7 lines
68 B
Python

def eggs():
assert False
def eggs_and_ham():
assert False