2010-10-11 19:38:16 +08:00
|
|
|
|
2013-08-01 23:32:19 +08:00
|
|
|
# run this with $ py.test --collect-only test_collectonly.py
|
2010-10-11 19:38:16 +08:00
|
|
|
#
|
|
|
|
def test_function():
|
|
|
|
pass
|
|
|
|
|
|
|
|
class TestClass:
|
2010-10-12 16:59:04 +08:00
|
|
|
def test_method(self):
|
2010-10-11 19:38:16 +08:00
|
|
|
pass
|
2010-10-12 16:59:04 +08:00
|
|
|
def test_anothermethod(self):
|
2010-10-11 19:38:16 +08:00
|
|
|
pass
|