File: test_missing_type.py

package info (click to toggle)
sqlmodel 0.0.8-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,400 kB
  • sloc: python: 11,752; javascript: 278; sh: 42; makefile: 8
file content (21 lines) | stat: -rw-r--r-- 474 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from typing import Optional

import pytest
from sqlmodel import Field, SQLModel


def test_missing_sql_type():
    class CustomType:
        @classmethod
        def __get_validators__(cls):
            yield cls.validate

        @classmethod
        def validate(cls, v):
            return v

    with pytest.raises(ValueError):

        class Item(SQLModel, table=True):
            id: Optional[int] = Field(default=None, primary_key=True)
            item: CustomType