示例#1
0
def test_max_equal():
    max_(10)(10)
示例#2
0
def test_max_greater_than():
    with pytest.raises(ValidationError):
        max_(10)(11)
示例#3
0
def test_max_less_than():
    max_(10)(9)