The basic proxied methods are proxied to the correct counterparts.
(self, method_name)
| 201 | ["debug", "info", "warning", "error", "exception", "critical"], |
| 202 | ) |
| 203 | def test_proxies_to_correct_method(self, method_name): |
| 204 | """ |
| 205 | The basic proxied methods are proxied to the correct counterparts. |
| 206 | """ |
| 207 | bl = BoundLogger(ReturnLogger(), [return_method_name], {}) |
| 208 | |
| 209 | assert method_name == getattr(bl, method_name)("event") |
| 210 | |
| 211 | def test_proxies_to_correct_method_special_cases(self): |
| 212 | """ |
nothing calls this directly
no test coverage detected