()
| 101 | |
| 102 | |
| 103 | def test_instance_method() -> None: |
| 104 | bar = Bar() |
| 105 | doc = generate_func_documentation(bar.func_bar) |
| 106 | assert doc.name == "func_bar" |
| 107 | assert doc.description == "This is func_bar." |
| 108 | assert doc.param_descriptions == {"a": "The first argument.", "b": "The second argument."} |
| 109 | |
| 110 | |
| 111 | def test_classmethod() -> None: |
nothing calls this directly
no test coverage detected