1
0
Fork 0
mirror of https://github.com/correl/typesafe-monads.git synced 2025-04-08 17:00:11 -09:00
typesafe-monads/tests/fixtures.py
Samuele Reghenzi c61baf51c1 set with test
2020-12-16 14:21:15 +01:00

8 lines
220 B
Python

import pytest # type: ignore
from typing import Type
from monads import Maybe, List, Result, Set
@pytest.fixture(scope="module", params=[Maybe, List, Result, Set])
def monad(request) -> Type:
return request.param