Пример #1
0
def test_one_str():
    assert str(junc.one('hello', 'world')) == "one('hello', 'world')"
Пример #2
0
def test_one_eq_none():
    assert junc.one(1, 2) == junc.none(3)
Пример #3
0
def test_one_ne_none():
    assert junc.one(1, 2) != junc.none(1, 2)
Пример #4
0
def test_one_eq_all():
    assert junc.one(1, 2) == junc.all(1, 2)
Пример #5
0
def test_one_ne_all():
    assert junc.one(1, 2) != junc.all(1, 3)
Пример #6
0
def test_one_eq_any():
    assert junc.one(1, 2) == junc.any(1, 3)
Пример #7
0
def test_one_ne_any():
    assert junc.one(1, 2) != junc.any(1, 2)
Пример #8
0
def test_one_eq_one():
    assert junc.one(1, 2) == junc.one(1, 3)
Пример #9
0
def test_one_repr():
    assert repr(junc.one('hello', 'world')) == "one('hello', 'world')"
Пример #10
0
def test_one_False():
    assert not junc.one(True, True, True)
Пример #11
0
def test_one_True():
    assert junc.one(False, True, False)
Пример #12
0
def test_one_empty():
    assert not junc.one()
Пример #13
0
def test_single_one_gt():
    assert junc.one(1,2,3) > 2
Пример #14
0
def test_any_ne_one():
    assert junc.any(1, 2) != junc.one(3, 4)