summaryrefslogtreecommitdiffstats
path: root/ExampleAssessments/example.yml
blob: bab1fb013ffec7b7590e72a60ac78c199f293f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
files:
    - example.py:
        classes:
            - Application:
                methods:
                    - __init__(3)
                    - a_method_with_defaults(3)
                    - add(3)
                    - aMethodThatIsntThere(1)
        functions:
            - hello_world(2)
            - an_undocumented_function(0)
            - aFunctionThatIsntThere(2)
            - greet(2)
    - aFileThatIsntThere.py:
        functions:
            - hello_world(2)
    - animals.py:
        classes:
            - Dog:
            - Cat:
            - Kitten: