diff --git a/aioreactive/testing/test.py b/aioreactive/testing/test.py deleted file mode 100644 index f53fd78..0000000 --- a/aioreactive/testing/test.py +++ /dev/null @@ -1,15 +0,0 @@ -from typing import Generic, Iterable, Tuple, TypeVar - -TSource = TypeVar("TSource") - - -class Test(Generic[TSource]): - def __init__(self, xs: Iterable[TSource]) -> None: - self.xs = xs - - def indexed(self) -> "Test[Tuple[int, int]]": - return Test((10, 20)) - - @staticmethod - def create(xs: Iterable[TSource]) -> "Test[TSource]": - return Test(xs)