Files
pytest2/doc/en/example/pythoncollection.py
holger krekel 8f24e10571 add changelog entry for anthon's hynek-fication of options,
and change the docs and tests to use the new style.
2013-08-01 17:32:19 +02:00

12 lines
199 B
Python

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