mirror of
https://github.com/correl/typesafe-monads.git
synced 2025-03-20 09:19:26 -09:00
8 lines
198 B
Python
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
|