(self)
| 538 | |
| 539 | class TestMatchArgs: |
| 540 | def test_py_class_basic(self) -> None: |
| 541 | @py_class(_k("MAPy")) |
| 542 | class PC(Object): |
| 543 | x: int |
| 544 | y: str |
| 545 | |
| 546 | assert _match_args(PC) == ("x", "y") |
| 547 | |
| 548 | def test_py_class_init_false_excluded(self) -> None: |
| 549 | @py_class(_k("MAInitFalse")) |
nothing calls this directly
no test coverage detected