summaryrefslogtreecommitdiff
path: root/doc/en/example/pythoncollection.py
blob: 9c4bd31cea026a8ca758f1dfe4bba43d20aad444 (plain)
1
2
3
4
5
6
7
8
9
10
11

# 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