18 lines
390 B
Python
18 lines
390 B
Python
import pytest
|
|
|
|
|
|
def test_invalid_field():
|
|
from tests.output_betterproto.invalid_field import Test
|
|
|
|
with pytest.raises(TypeError):
|
|
Test(unknown_field=12)
|
|
|
|
|
|
def test_invalid_field_pydantic():
|
|
from pydantic import ValidationError
|
|
|
|
from tests.output_betterproto_pydantic.invalid_field import Test
|
|
|
|
with pytest.raises(ValidationError):
|
|
Test(unknown_field=12)
|