summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/tools/pytest/doc/en/example/pythoncollection.py
blob: 05858eb854b49c95f94b01f339143e63a62e5930 (plain)
1
2
3
4
5
6
7
8
9
10
11

# 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