Skip to content

Added test for union with generics #261

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion tests/test_union.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import marshmallow

from marshmallow_dataclass import dataclass
from marshmallow_dataclass import dataclass, NewType


class TestClassSchema(unittest.TestCase):
Expand Down Expand Up @@ -196,3 +196,23 @@ class PEP604IntOrStr:

data_in = {"value": 42}
self.assertEqual(schema.dump(schema.load(data_in)), data_in)

@unittest.skipIf(
sys.version_info < (3, 7, 4),
"Requires typeguard >=4.0.0 not available for py<3.7.4",
)
def test_union_with_generics(self):
IntList = NewType("IntList", List[int])

@dataclass
class Dclass:
value: Union[IntList, List[str]]

schema = Dclass.Schema()

self.assertEqual(
schema.load({"value": [1, 2, 3]}), Dclass(value=IntList([1, 2, 3]))
)
self.assertEqual(
schema.dump(Dclass(value=IntList([1, 2, 3]))), {"value": [1, 2, 3]}
)
Loading