test_ok2/doc/en/example/pythoncollection.py

15 lines
209 B
Python
Raw Normal View History

# run this with $ pytest --collect-only test_collectonly.py
#
def test_function():
pass
2018-05-23 22:48:46 +08:00
class TestClass(object):
def test_method(self):
pass
2018-05-23 22:48:46 +08:00
def test_anothermethod(self):
pass