1
0
Fork 0
mirror of https://github.com/correl/typesafe-monads.git synced 2025-03-20 09:19:26 -09:00
typesafe-monads/tests/fixtures.py
2018-10-12 22:20:31 -04:00

8 lines
198 B
Python

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