blob: 9ae07be92981d7e66d8fbbe620cc616dcde5d866 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
"""Test cases for functions defined in monads.py"""
import pytest
from pymonad.maybe import Just, Nothing
from gn3.monads import MonadicDict
@pytest.mark.unit_test
@pytest.mark.parametrize(
("key", "value", "expected"),
(
("foo", Just(1), Just(1)),
("bar", Nothing, Nothing),
),
)
def test_monadic_dict(key, value, expected):
"""Test basic Monadic Dict operations"""
_test_dict = MonadicDict()
_test_dict[key] = value
_test_dict |= {"test_update": "random"}
assert _test_dict[key] == expected
assert _test_dict["test_update"] == Just("random")
assert _test_dict["non-existent"] == Nothing
|