mirror of
https://github.com/correl/typesafe-monads.git
synced 2025-04-08 17:00:11 -09:00
8 lines
220 B
Python
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
|