Files
pytest2/doc/en/example/pythoncollection.py
2017-02-16 20:28:17 +01:00

12 lines
206 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