コード例 #1
0
def test_int32_with_in_range_number(n):
    int32_validator(n)
コード例 #2
0
def test_int32_with_out_of_range_number(n):
    with pytest.raises(ValidationError):
        int32_validator(n)
コード例 #3
0
def test_int32_with_out_of_range_number(n):
    from django.core.exceptions import ValidationError
    with pytest.raises(ValidationError):
        int32_validator(n)
コード例 #4
0
def test_int32_with_in_range_number(n):
    int32_validator(n)
コード例 #5
0
ファイル: test_format_validators.py プロジェクト: Arable/flex
def test_int32_with_out_of_range_number(n):
    with pytest.raises(ValidationError):
        int32_validator(n)