(self)
| 2039 | self.assertIs(init_subclass_saw, C) |
| 2040 | |
| 2041 | def test_function(self): |
| 2042 | @deprecated("b will go away soon") |
| 2043 | def b(): |
| 2044 | pass |
| 2045 | |
| 2046 | with self.assertWarnsRegex(DeprecationWarning, "b will go away soon"): |
| 2047 | b() |
| 2048 | |
| 2049 | def test_method(self): |
| 2050 | class Capybara: |
nothing calls this directly
no test coverage detected