def test_or_with_nun_nun(): x = Nun() y = Nun() assert x.or_(y) == Nun()
def test_or_with_nun_some(): x = Nun() y = Some(2) assert x.or_(y) == Some(2)