15 lines
209 B
Python
15 lines
209 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
|