Files
pytest2/doc/en/example/pythoncollection.py
2018-05-23 18:12:04 +02:00

16 lines
210 B
Python

# run this with $ pytest --collect-only test_collectonly.py
#
def test_function():
pass
class TestClass(object):
def test_method(self):
pass
def test_anothermethod(self):
pass