Skip to content

Commit 168b9ae

Browse files
committed
Add a docstring to the test.
1 parent 1e3359a commit 168b9ae

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/test_mixin.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ class FooMixin:
1010

1111
@pytest.mark.usefixtures("clear_sqlmodel")
1212
def test_mixin():
13+
"""Test SQLModel in combination with a mixin.
14+
15+
https://github.com/tiangolo/sqlmodel/issues/254
16+
17+
"""
18+
1319
class Hero(FooMixin, SQLModel, table=True):
1420
id: Optional[int] = Field(default=None, primary_key=True)
1521
name: str

0 commit comments

Comments
 (0)