eq_(MyModel.__mapper__.always_refresh,True)
- def test_single_table_no_propogation(self):
+ def test_single_table_no_propagation(self):
class IdColumn:
id = Column(Integer, primary_key=True)
class SpecificType2(BaseType):
__mapper_args__ = dict(polymorphic_identity='type2')
- def test_joined_table_propogation(self):
+ def test_joined_table_propagation(self):
class IdColumn:
id = Column(Integer, primary_key=True)
__tablename__ = 'type2'
__mapper_args__ = dict(polymorphic_identity='type2')
- def test_tablename_propogation(self):
+ def test_tablename_propagation(self):
# ie: we want joined table
class TableNameMixin:
@classproperty
__mapper_args__ = dict(polymorphic_identity='type2')
id = Column(Integer, primary_key=True)
- def test_tablename_no_propogation(self):
+ def test_tablename_no_propagation(self):
# ie: we want single table
class TableNameMixin: