(self)
| 42 | class ClsWarningTest(fixtures.TestBase): |
| 43 | @testing.fixture |
| 44 | def dep_cls_fixture(self): |
| 45 | class Connectable: |
| 46 | """a docstring""" |
| 47 | |
| 48 | some_member = "foo" |
| 49 | |
| 50 | Connectable = _decorate_cls_with_warning( |
| 51 | Connectable, |
| 52 | None, |
| 53 | SADeprecationWarning, |
| 54 | "a message", |
| 55 | "2.0", |
| 56 | "another message", |
| 57 | ) |
| 58 | |
| 59 | return Connectable |
| 60 | |
| 61 | def test_dep_inspectable(self, dep_cls_fixture): |
| 62 | """test #8115""" |
nothing calls this directly
no test coverage detected