Remove Future from generic monad testing

The Future tests already re-implement all of the normal tests while
also handling their asynchronous nature. Including them in the generic
tests leave futures unawaited.
This commit is contained in:
Correl Roush 2019-01-08 15:40:00 -05:00
parent cbe71da3f8
commit efa13e6f08

View file

@ -1,6 +1,6 @@
import pytest # type: ignore
from typing import Type
from monads import Maybe, List, Result, Future
from monads import Maybe, List, Result
@pytest.fixture(scope="module", params=[Maybe, List, Result])