class documentation

class ComponentReflectionTestExtra(fixtures.TestBase):

View In Hierarchy

Undocumented

Method ​_type​_round​_trip Undocumented
Method test​_get​_check​_constraints Undocumented
Method test​_get​_foreign​_key​_options Undocumented
Method test​_nullable​_reflection Undocumented
Method test​_numeric​_reflection Undocumented
Method test​_reflect​_covering​_index Undocumented
Method test​_reflect​_expression​_based​_indexes Undocumented
Method test​_varchar​_reflection Undocumented
Class Variable __backend__ Undocumented

Inherited from TestBase:

Method assert​_ Undocumented
Method async​_testing​_engine Undocumented
Method connection Undocumented
Method connection​_no​_trans Undocumented
Method future​_connection Undocumented
Method future​_engine Undocumented
Method metadata Provide bound MetaData for a single test, dropping afterwards.
Method registry Undocumented
Method testing​_engine Undocumented
Method trans​_ctx​_manager​_fixture Undocumented
Class Variable __leave​_connections​_for​_teardown__ Undocumented
Class Variable __only​_on__ Undocumented
Class Variable __requires__ Undocumented
Class Variable __skip​_if__ Undocumented
Class Variable __unsupported​_on__ Undocumented
def _type_round_trip(self, connection, metadata, *types):

Undocumented

@testing.combinations((True, testing.requires.schemas), (False), argnames='use_schema')
@testing.requires.check_constraint_reflection
def test_get_check_constraints(self, metadata, connection, use_schema):

Undocumented

@testing.combinations((None, 'CASCADE', None, testing.requires.foreign_key_constraint_option_reflection_ondelete), (None, None, 'SET NULL', testing.requires.foreign_key_constraint_option_reflection_onupdate), ({}, None, 'NO ACTION', testing.requires.foreign_key_constraint_option_reflection_onupdate), ({}, 'NO ACTION', None, testing.requires.fk_constraint_option_reflection_ondelete_noaction), (None, None, 'RESTRICT', testing.requires.fk_constraint_option_reflection_onupdate_restrict), (None, 'RESTRICT', None, testing.requires.fk_constraint_option_reflection_ondelete_restrict), argnames='expected,ondelete,onupdate')
def test_get_foreign_key_options(self, connection, metadata, expected, ondelete, onupdate):

Undocumented

@testing.requires.table_reflection
def test_nullable_reflection(self, connection, metadata):

Undocumented

@testing.requires.table_reflection
def test_numeric_reflection(self, connection, metadata):

Undocumented

@testing.requires.index_reflects_included_columns
def test_reflect_covering_index(self, metadata, connection):

Undocumented

@testing.requires.indexes_with_expressions
def test_reflect_expression_based_indexes(self, metadata, connection):

Undocumented

@testing.requires.table_reflection
def test_varchar_reflection(self, connection, metadata):

Undocumented

__backend__: bool =

Undocumented