(self)
| 861 | ) |
| 862 | |
| 863 | def test_pdb_validate_usepdb_cls(self): |
| 864 | assert _validate_usepdb_cls("os.path:dirname.__name__") == ( |
| 865 | "os.path", |
| 866 | "dirname.__name__", |
| 867 | ) |
| 868 | |
| 869 | assert _validate_usepdb_cls("pdb:DoesNotExist") == ("pdb", "DoesNotExist") |
| 870 | |
| 871 | def test_pdb_custom_cls_without_pdb( |
| 872 | self, pytester: Pytester, custom_pdb_calls: List[str] |
nothing calls this directly
no test coverage detected