Beispiel #1
0
def test_or_with_nun_nun():
    x = Nun()
    y = Nun()

    assert x.or_(y) == Nun()
Beispiel #2
0
def test_or_with_nun_some():
    x = Nun()
    y = Some(2)

    assert x.or_(y) == Some(2)