Skip to content

Commit

Permalink
Create base test class for inheritance in adapters
Browse files Browse the repository at this point in the history
  • Loading branch information
jtcohen6 committed May 10, 2023
1 parent 16e8c85 commit a2ee86a
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ class TestModelConstraintsRuntimeEnforcement(BaseModelConstraintsRuntimeEnforcem
pass


class TestConstraintQuotedColumn(BaseConstraintsRuntimeDdlEnforcement):
class BaseConstraintQuotedColumn(BaseConstraintsRuntimeDdlEnforcement):
@pytest.fixture(scope="class")
def models(self):
return {
Expand Down Expand Up @@ -447,3 +447,7 @@ def expected_sql(self):
) as model_subq
);
"""


class TestConstraintQuotedColumn(BaseConstraintQuotedColumn):
pass

0 comments on commit a2ee86a

Please sign in to comment.