(self)
| 892 | __dialect__ = "default" |
| 893 | |
| 894 | def _fixture(self): |
| 895 | Base = declarative_base() |
| 896 | |
| 897 | class A(Base): |
| 898 | __tablename__ = "a" |
| 899 | id = Column(Integer, primary_key=True) |
| 900 | _value = Column("value", String) |
| 901 | |
| 902 | @hybrid.hybrid_property |
| 903 | def value(self): |
| 904 | "This is an instance-level docstring" |
| 905 | return self._value |
| 906 | |
| 907 | return A |
| 908 | |
| 909 | @testing.fixture |
| 910 | def _function_fixture(self): |
no test coverage detected